47 lines
890 B
C#
47 lines
890 B
C#
|
|
|||
|
using Ease.Core.Model;
|
|||
|
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class AssesmentValueDetails : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public AssesmentValueDetails()
|
|||
|
{
|
|||
|
this.Status = EnumStatus.Active;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
public int ValueID { get; set; }
|
|||
|
|
|||
|
public string Value { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#region IAssesmentValueDetails Service
|
|||
|
|
|||
|
public interface IAssesmentValueDetailsService
|
|||
|
{
|
|||
|
List<AssesmentValueDetails> GetWithValue(int ValueID);
|
|||
|
AssesmentValueDetails Get(int id);
|
|||
|
int Save(AssesmentValueDetails item);
|
|||
|
void Delete(int id);
|
|||
|
List<AssesmentValueDetails> Get(EnumStatus status);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
}
|