Exemplo n.º 1
0
 public IHttpActionResult DeleteAccount(int accountId)
 {
     if (_bll.DeleteAccount(accountId))
     {
         return(Ok());
     }
     return(InternalServerError());
 }