Exemplo n.º 1
0
 public UpdateUserCommandHandler(IBuyBookDbContext buyBookContext)
 {
     _buyBookContext = buyBookContext;
 }
 public CreateUserCommandHandler(IBuyBookDbContext context)
 {
     _buyBookContext = context;
 }
Exemplo n.º 3
0
 public BookPopulate(IBuyBookDbContext context, ExcelReader excelReader, IMongoDbContext mongo)
 {
     _dbContext      = context;
     _mongoDbContext = mongo;
     _reader         = excelReader;
 }
Exemplo n.º 4
0
 public UserPopulate(IBuyBookDbContext context, IMongoDbContext mongo, ExcelReader excelReader)
 {
     _dbContext      = context;
     _mongoDbContext = mongo;
     _reader         = excelReader;
 }