public List <CM_PHONGBAN_DTO> DEPARTMENT_Search(string index, CM_PHONGBAN_DTO filterInput)
 {
     return(procedureHelper.GetData <CM_PHONGBAN_DTO>("DEPARTMENT_Search", new {
         INDEX = index,
         CURRENT_BRANCH = AbpSession.UserId.ToString(),
         DEP_CODE = filterInput.DEP_CODE,
         DEP_NAME = filterInput.DEP_NAME,
         BRANCH_ID = filterInput.BRANCH_ID,
         RECORD_STATUS = filterInput.RECORD_STATUS
     }));
 }
Ejemplo n.º 2
0
 public List <CM_PHONGBAN_DTO> DEPARTMENT_Search(string index, [FromBody] CM_PHONGBAN_DTO filterInput)
 {
     return(phongBanAppService.DEPARTMENT_Search(index, filterInput));
 }