Ejemplo n.º 1
0
 public SourceService(MapperService mapper, DAL.AllDbContext dbContext)
 {
     this.mapper    = mapper;
     this.dbContext = dbContext;
 }
Ejemplo n.º 2
0
 public ClientOrders(ICurrentUserService currentUser, DAL.AllDbContext dbContext)
 {
     _client        = currentUser.CurrentUser as Client;
     this.dbContext = dbContext;
 }
Ejemplo n.º 3
0
 public UpdateHandlerService(DAL.AllDbContext allDbContext, EventBus eventBus)
 {
     this.allDbContext = allDbContext;
     this.eventBus     = eventBus;
 }