Example #1
0
 public GatewayService(IGatewayRepo gatewayRepo)
 {
     _gatewayRepo = gatewayRepo;
 }
 public StoreController(IGatewayRepo repo)
 {
     this.repo = repo;
 }
 public StoreController()
 {
     this.repo = new ConcGatewayRepo();
 }
Example #4
0
 public DeviceService(IDeviceRepo deviceRepo, IGatewayRepo gatewayRepo)
 {
     _deviceRepo  = deviceRepo;
     _gatewayRepo = gatewayRepo;
 }