public string DeleteList(int Id, string EmployeeCode)
 {
     return(AdminMasterDAL.DeleteList(Id, EmployeeCode));
 }
 public string UpdateEmployeeList([FromBody] List <EmployeeMasterModel> Obj)
 {
     return(AdminMasterDAL.UpdateEmployeeList(Obj));
 }
 public List <CCStackHolder> GetCCStackHolderDetail()
 {
     return(AdminMasterDAL.GetCCStackHolderDetail());
 }
 public List <EmployeeMasterModel> getEmployeeList()
 {
     return(AdminMasterDAL.getEmployeeList());
 }
 public string UpdateAdminList([FromBody] List <AdminMasterModal> Obj)
 {
     return(AdminMasterDAL.UpdateAdminList(Obj));
 }
 public List <AdminMasterModal> getAdminList()
 {
     return(AdminMasterDAL.getAdminList());
 }