Exemple #1
0
 public InfoController()
 {
     _billService            = new BillServiceImpl(context);
     _paymentService         = new PaymentServiceImpl(context);
     _paymentCategoryService = new PaymentCategoryServiceImpl(context);
     _administratorService   = new AdministratorServiceImpl(context);
     _residentService        = new ResidentServiceImpl(context);
     _userService            = new UserServiceImpl(context);
 }
 public PaymentCategoryController(IPaymentCategoryService paymentCategoryService)
 {
     this.paymentCategoryService = paymentCategoryService;
 }