public async Task <IActionResult> GetAll()
        {
            var response = await _accountTypeService.GetAll();

            return(Ok(response));
        }
 public async Task <IActionResult> GetAllAccountType()
 {
     return(Ok(await _accountTypeService.GetAll()));
 }