예제 #1
0
 public PeripheralDevicesController(IPeripheralDeviceService peripheralService, GatewayManagerContext context, IMapper mapper)
 {
     _peripheralService = peripheralService;
     _context           = context;
     _mapper            = mapper;
 }
예제 #2
0
 public GatewayRepository(GatewayManagerContext context) : base(context)
 {
 }
예제 #3
0
 public UnitOfWork(GatewayManagerContext context)
 {
     _gatewayManagerContext = context;
 }
 public PeripheralDeviceRepository(GatewayManagerContext gatewayManagerContext) : base(gatewayManagerContext)
 {
 }
예제 #5
0
 public GatewaysController(IGatewayService gatewayService, GatewayManagerContext context, IMapper mapper)
 {
     _gatewayService = gatewayService;
     _context        = context;
     _mapper         = mapper;
 }