Example #1
0
 public EventSaveHandler(IOccurrencesDbContext context)
 {
     _dbContext = context;
     _validator = new EventSaveValidator();
     _errors    = new List <KeyValuePair <string, string> >();
 }
Example #2
0
 public EventAggregate(IOccurrencesDbContext context)
 {
     _dbContext = context;
 }