Example #1
0
 public ScheduleAggregateSteps()
 {
     _config           = new ConfigurationFactory().CreateFromAzureSettings();
     _connectionString = new ConnectionStringFactory(_config).CreateFromAzureSettings("Stack:Shared:SqlConnection");
     _dbContext        = new DbContextFactory(_connectionString).Create();
     Aggregate         = new ScheduleAggregate(_dbContext);
 }
Example #2
0
 public ScheduleGetHandler(ChronologyDbContext dbContext)
 {
     _dbContext = dbContext;
     _validator = new ScheduleGetValidator();
     _errors    = new List <KeyValuePair <string, string> >();
 }
Example #3
0
 public ResourceTimeRecurringsController(ChronologyDbContext context)
 {
     _dbContext = context;
 }
 public ResourceSchedulesController(ChronologyDbContext context)
 {
     _dbContext = context;
 }
 public VentureTimeRecurringsController(ChronologyDbContext context)
 {
     _dbContext = context;
 }
Example #6
0
 public AssociateSchedulesController(ChronologyDbContext context)
 {
     _dbContext = context;
 }
 public AssociateTimeRecurringsController(ChronologyDbContext context)
 {
     _dbContext = context;
 }
Example #8
0
 public VentureSchedulesController(ChronologyDbContext context)
 {
     _dbContext = context;
 }