public IActionResult GetAllPersonList(GetPersonelView view)
        {
            var response = _pp_otService.GetAllPersonList(view);

            if (response.isSuccess == false)
            {
                return(null);
            }
            return(Ok(response));
        }
예제 #2
0
        public async Task <IActionResult> GetAllPersonList(GetPersonelView view)
        {
            GetAllPersonListResponse response = _iPP_OTService.GetAllPersonList(view);

            return(Ok(response));
        }