Example #1
0
 public API_MobileService(
     IUserRepository _UserRepository,
     ItblLaneRepository _tblLaneRepository,
     ItblPCRepository _tblPCRepository,
     ItblCardRepository _tblCardRepository,
     ItblCardGroupRepository _tblCardGroupRepository,
     ItblVehicleGroupRepository _tblVehicleGroupRepository,
     ItblBlackListRepository _tblBlackListRepository,
     ItblCustomerRepository _tblCustomerRepository,
     ItblCustomerGroupRepository _tblCustomerGroupRepository,
     ItblCardEventRepository _tblCardEventRepository,
     ItblAlarmRepository _tblAlarmRepository,
     Kztek.Data.Infrastructure.IUnitOfWork _UnitOfWork,
     Kztek.Data.Event.Infrastructure.IUnitOfWork _UnitOfWorkEv
     )
 {
     this._UserRepository             = _UserRepository;
     this._tblLaneRepository          = _tblLaneRepository;
     this._tblPCRepository            = _tblPCRepository;
     this._tblCardRepository          = _tblCardRepository;
     this._tblCardGroupRepository     = _tblCardGroupRepository;
     this._tblVehicleGroupRepository  = _tblVehicleGroupRepository;
     this._tblBlackListRepository     = _tblBlackListRepository;
     this._tblCustomerRepository      = _tblCustomerRepository;
     this._tblCustomerGroupRepository = _tblCustomerGroupRepository;
     this._tblCardEventRepository     = _tblCardEventRepository;
     this._tblAlarmRepository         = _tblAlarmRepository;
     this._UnitOfWork   = _UnitOfWork;
     this._UnitOfWorkEv = _UnitOfWorkEv;
 }
 public tblCardEventService(ItblCardEventRepository _tblCardEventRepository, ItblLoopEventRepository _tblLoopEventRepository, ItblLaneService _tblLaneService, ItblCardService _tblCardService, ItblCustomerService _tblCustomerService)
 {
     this._tblCardEventRepository = _tblCardEventRepository;
     this._tblLoopEventRepository = _tblLoopEventRepository;
     this._tblCardService         = _tblCardService;
     this._tblLaneService         = _tblLaneService;
     this._tblCustomerService     = _tblCustomerService;
 }
Example #3
0
 public API_tblCardEventService(ItblCardRepository _tblCardRepository, ItblCardEventRepository _tblCardEventRepository, ItblVehicleGroupRepository _tblVehicleGroupRepository)
 {
     this._tblCardRepository         = _tblCardRepository;
     this._tblCardEventRepository    = _tblCardEventRepository;
     this._tblVehicleGroupRepository = _tblVehicleGroupRepository;
 }