Example #1
0
 public async Task <IHttpActionResult> GetAccountByCustomerID([FromUri] long CustomerID)
 {
     return(Ok(await _accountApplicationService.GetAccountByCustomerID(CustomerID)));
 }