Example #1
0
 public GetButtonClickQueryHandler(IRsDbContext rsDbContext)
 {
     _rsDbContext = rsDbContext;
 }
Example #2
0
 public GetButtonClickQueryHandlerTests()
 {
     _rsDbContext = new CommandQueryTestFixture().Context;
     _handler     = new GetButtonClickQuery.GetButtonClickQueryHandler(_rsDbContext);
 }
Example #3
0
 public GetTotalIpAddressCountQueryHandlerTests()
 {
     _rsDbContext = new CommandQueryTestFixture().Context;
     _handler     = new GetTotalIpAddressCountQuery.GetTotalIpAddressCountQueryHandler(_rsDbContext);
 }
Example #4
0
 public GetTotalIpAddressCountQueryHandler(IRsDbContext rsDbContext)
 {
     _rsDbContext = rsDbContext;
 }
Example #5
0
 public DoesIpAddressExistsQueryHandler(IRsDbContext rsDbContext)
 {
     _rsDbContext = rsDbContext;
 }
 public AddIpCommandHandler(IRsDbContext rsDbContext)
 {
     _rsDbContext = rsDbContext;
 }
 public AddButtonClickCommandHandler(IRsDbContext rsDbContext)
 {
     _rsDbContext = rsDbContext;
 }