예제 #1
0
 public BaseRepository(HiroshimaMaaSDBContext context, IMessageHandler messageHandler, IUnitOfWork unitOfWork)
 {
     _context        = context;
     _entities       = context.Set <T>();
     _messageHandler = messageHandler;
     _unitOfWork     = unitOfWork;
 }
예제 #2
0
 public TravellerRepository(HiroshimaMaaSDBContext context, IMessageHandler messageHandler, IUnitOfWork unitOfWork) : base(context, messageHandler, unitOfWork)
 {
 }
예제 #3
0
 public PassDescriptionRepository(HiroshimaMaaSDBContext context, IMessageHandler messageHandler, IUnitOfWork unitOfWork) : base(context, messageHandler, unitOfWork)
 {
 }
 public PaymentGatewayTransactionRepository(HiroshimaMaaSDBContext context, IMessageHandler messageHandler, IUnitOfWork unitOfWork) : base(context, messageHandler, unitOfWork)
 {
 }
예제 #5
0
 public UnitOfWork(HiroshimaMaaSDBContext context, IHttpContextAccessor httpContextAccessor, ILoggerManager logger)
 {
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
     _logger = logger;
 }
예제 #6
0
 public ConfigurationRepository(HiroshimaMaaSDBContext context, IMessageHandler messageHandler, IUnitOfWork unitOfWork) : base(context, messageHandler, unitOfWork)
 {
 }
예제 #7
0
 public PassActivePTOMapper(HiroshimaMaaSDBContext context, IMessageHandler messageHandler, IUnitOfWork unitOfWork) : base(context, messageHandler, unitOfWork)
 {
 }