Пример #1
0
 public BillService(IPaySystemRepository <Bill> userRepository,
                    IPaySystemRepository <ReallyBill> reallyBilRepo,
                    IPaySystemRepository <User> userBilRepo,
                    IStatusBillService statusBillService)
 {
     this._billRepo          = userRepository;
     this._reallyBilRepo     = reallyBilRepo;
     this._userBilRepo       = userBilRepo;
     this._statusBillService = statusBillService;
 }
Пример #2
0
 public BillController(IUserService userService, IBillService billService, IStatusBillService statusBillService)
 {
     this.userService       = userService;
     this.billService       = billService;
     this.statusBillService = statusBillService;
 }