public DepartmentService(IUnitofwork db)
 {
     Database = db;
 }
Exemple #2
0
 public OrdersBO(IUnitofwork uow)
 {
     this.UoW = uow;
 }
Exemple #3
0
 public AApp(IUnitofwork unitofwork)
 {
     this.unitofwork = unitofwork;
 }
 public GuestResponseService(IUnitofwork unitofwork)
 {
     _unitofwork = unitofwork;
 }
Exemple #5
0
 public ARepository(IUnitofwork unitofwork)
 {
     this.unitofwork = unitofwork;
 }
 public ProductsBO(IUnitofwork uow)
 {
     this.UoW = uow;
 }
 public UserController(IUnitofwork unitofwork, UserManager <ApplicationUser> userManager)
 {
     this.unitofwork  = unitofwork;
     this.userManager = userManager;
 }
Exemple #8
0
 public WorkerService(IUnitofwork db)
 {
     Database = db;
 }
Exemple #9
0
 public TransactionalCommandHandlerDecorator(IUnitofwork unitofwork, ICommandHandler <T> commandHandler)
 {
     _unitofwork     = unitofwork;
     _commandHandler = commandHandler;
 }
Exemple #10
0
 public AreaBL(IUnitofwork unitofWork)
 {
     this.unitofWork = unitofWork;
 }
Exemple #11
0
 public StaffService(IUnitofwork db)
 {
     Database = db;
 }
Exemple #12
0
 public ProjectService(IUnitofwork db)
 {
     Database = db;
 }
 public SettlementController(IUnitofwork unitofwork)
 {
     this.unitofwork = unitofwork;
 }