Exemple #1
0
 internal Response <List <FeeChargeResult> > GetFeeCharges(int feeDetailId, long auditUserId, string auditWorkstation)
 {
     try
     {
         var results = _cardManService.GetFeeCharges(feeDetailId, auditUserId, auditWorkstation);
         return(new Response <List <FeeChargeResult> >(results, ResponseType.SUCCESSFUL,
                                                       "",
                                                       ""));
     }
     catch (Exception ex)
     {
         log.Error(ex);
         return(new Response <List <FeeChargeResult> >(null,
                                                       ResponseType.ERROR,
                                                       "Error when processing request.",
                                                       log.IsDebugEnabled || log.IsTraceEnabled ? ex.Message : ""));
     }
 }