Exemple #1
0
 public TestSeatContext(Aggregate.AggregateBuilder <Seat> builder, Guid sessionid, Guid companyId, Guid?studentId)
 {
     Builder   = builder;
     Sessionid = sessionid;
     CompanyId = companyId;
     StudentId = studentId;
 }
 private TestSessionNotification()
 {
     SessionId = Guid.NewGuid();
     Builder   = Aggregate.Make <NotificationManager>().AddEvent(new NotificationManagerCreated(Guid.NewGuid(), 1, SessionId));
 }
 public TestConventionContext(Aggregate.AggregateBuilder <Agreement> builder, Guid contactId)
 {
     Builder   = builder;
     ContactId = contactId;
 }