EchoTex_Payroll/HRM.BO/Schedular/EmployeeCordinator.cs

31 lines
749 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HRM.BO
{
public class EmployeeCordinator : BasicBaseObject
{
#region Constructor
public EmployeeCordinator()
{
this.ApproveTimeRequest = false;
}
#endregion
#region Properties
public int EmployeeID { get; set; }
public int CordinatorID { get; set; }
public bool ApproveTimeRequest { get; set; }
public string EmployeeName { get; set; }
public string EmployeeNo { get; set; }
#endregion
}
public interface IEmployeeCordinatorService
{
List<EmployeeCordinator> Get();
}
}