Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public UserController(FinancialContext ctx, IFMUnitOfWork uow, IFMUser patrick)
 {
     this._Context = ctx;
     this._Service = patrick;
     this._Uow     = uow;
 }
Exemplo n.º 3
0
 public Accountant(IFMUnitOfWork iFMUnitOfWork)
 {
     this.unitOfWork = iFMUnitOfWork ?? throw new System.ArgumentNullException(nameof(iFMUnitOfWork));
 }
Exemplo n.º 4
0
 public AccountantController(FinancialContext ctx, IFMUnitOfWork uow, IAccountant patrick)
 {
     this._Context = ctx;
     this._Service = patrick;
     this._Uow     = uow;
 }