public ActionResult <TransactionType> GetTransactionTypeById(int pId)
 {
     return(_service.GetTransactionTypeById(pId));
 }
예제 #2
0
 public async Task <TransactionType> GetTransactionTypeById(int pId)
 {
     return(await _service.GetTransactionTypeById(pId));
 }