public async Task <IActionResult> GetCustomerAccount(int id) { ICustomerAccount customerAccountInfo = await customerAccountService.Get(id); return(Ok(customerAccountInfo)); }