EchoTex_Payroll/HRM.BO/TrainingBOs/TrainingAssessment.cs

32 lines
895 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
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
}