32 lines
895 B
C#
32 lines
895 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
#region Class TrainingAssessment
|
|||
|
public class TrainingAssessment : AuditTrailBase
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
public TrainingAssessment()
|
|||
|
{
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int TrainingId { get; set; }
|
|||
|
public int EmployeeId { get; set; }
|
|||
|
public Employee Employee { get; set; }
|
|||
|
public string Duration { get; set; }
|
|||
|
public bool IsAssessmentCompleted { get; set; }
|
|||
|
public int IvaluationPoint { get; set; }
|
|||
|
public int ObtainedIvaluationPoint { get; set; }
|
|||
|
public string Location { get; set; }
|
|||
|
public string Remarks { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|