31 lines
749 B
C#
31 lines
749 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|