public SourceService(MapperService mapper, DAL.AllDbContext dbContext) { this.mapper = mapper; this.dbContext = dbContext; }
public ClientOrders(ICurrentUserService currentUser, DAL.AllDbContext dbContext) { _client = currentUser.CurrentUser as Client; this.dbContext = dbContext; }
public UpdateHandlerService(DAL.AllDbContext allDbContext, EventBus eventBus) { this.allDbContext = allDbContext; this.eventBus = eventBus; }