public IActionResult GetAllPersonList(GetPersonelView view) { var response = _pp_otService.GetAllPersonList(view); if (response.isSuccess == false) { return(null); } return(Ok(response)); }
public async Task <IActionResult> GetAllPersonList(GetPersonelView view) { GetAllPersonListResponse response = _iPP_OTService.GetAllPersonList(view); return(Ok(response)); }