48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using NPOI.POIFS.Properties;
|
|
using NPOI.SS.Formula.Functions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Net.NetworkInformation;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class Questionnaire : BasicBaseObject
|
|
{
|
|
#region Constructor
|
|
|
|
public Questionnaire()
|
|
{
|
|
Description = string.Empty;
|
|
Point = 0.0;
|
|
CompetencyID = 0;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
public string Description { get; set; }
|
|
public double Point { get; set; }
|
|
public int CompetencyID { get; set; }
|
|
public string GradeIDsInString { get; set; }
|
|
public Competency Competency { get; set; }
|
|
public List<int> GradeIDs { get; set; }
|
|
public List<Grade> Grades { get; set; }
|
|
|
|
public bool Applicability { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
public interface IQuestionnaireService
|
|
{
|
|
Questionnaire Get(int id);
|
|
List<Questionnaire> Get();
|
|
int Save(Questionnaire item);
|
|
void Delete(int id);
|
|
}
|
|
}
|