Пример #1
0
 public FinancialController(FinancialContext ctx, IFMUnitOfWork uow, IFMUser user, IAccountant accountant, IMasterAccountant masterAccountant)
 {
     this._Context              = ctx;
     this._UserRole             = user;
     this._Uow                  = uow;
     this._AccountantRole       = accountant;
     this._MasterAccountantRole = masterAccountant;
 }
Пример #2
0
 public MasterAccountantController(FinancialContext ctx, IFMUnitOfWork uow, IMasterAccountant patrick)
 {
     this._Context = ctx;
     this._Service = patrick;
     this._Uow     = uow;
 }