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