Example #1
0
 public PaymentController(BranchService branchService,
                          PaymentService paymentService, PaymentPeriodService periodService)
 {
     _branchService  = branchService;
     _paymentService = paymentService;
     _periodService  = periodService;
 }
Example #2
0
        public ActionResult GetActivePaymentPeriods()
        {
            var records = PaymentPeriodService.QueryActiveMonths();

            return(Json(records, JsonRequestBehavior.AllowGet));
        }