Esempio n. 1
0
 public CreateCustomerCommandTest(CommandTestFixture fixture)
 {
     _customerDbContext  = fixture.Context;
     _mapper             = fixture.Mapper;
     _logger             = Mock.Of <ILogger <CreateCustomerCommandHandler> >();
     _customerRepository = new CustomerRepository(fixture.Context);
 }
 public CreateAddressCommandHandlerTests(CommandTestFixture fixture)
 {
     _context = fixture.Context;
 }
Esempio n. 3
0
 public UpdateConsultationCommandTests(CommandTestFixture fixture)
 {
     _mapper = fixture.Mapper;
 }
Esempio n. 4
0
 public CreateOrderCommandHandlerTests(CommandTestFixture fixture)
 {
     _context = fixture.Context;
     _mapper  = fixture.Mapper;
 }