public PassengerDetailDomain(ITrainUow uow, IDbContextManager <MainSqlDbContext> dbContextManager)
 {
     this.Uow         = uow;
     DbContextManager = dbContextManager;
 }
Beispiel #2
0
 public PassengerInvoiceDomain(ITrainUow uow)
 {
     this.Uow = uow;
 }
 public TrainBookingDomain(ITrainUow uow, IDbContextManager <MainSqlDbContext> dbContextManager)
 {
     this.Uow         = uow;
     DbContextManager = dbContextManager;
 }