示例#1
0
 public Task <List <Expenditure> > GetExpendituresByTotalAmount(decimal totalAmount)
 {
     try
     {
         return(_repository.GetExpendituresByTotalAmount(totalAmount));
     }
     catch (Exception ex)
     {
         _logger.LogError(ex, ex.Message);
         throw ex;
     }
 }