public API_CardViettelService(ItblCardGroupRepository _tblCardGroupRepository, ItblCustomerGroupRepository _tblCustomerGroupRepository, ItblCardRepository _tblCardRepository, ItblCustomerRepository _tblCustomerRepository)
 {
     this._tblCardGroupRepository     = _tblCardGroupRepository;
     this._tblCustomerGroupRepository = _tblCustomerGroupRepository;
     this._tblCardRepository          = _tblCardRepository;
     this._tblCustomerRepository      = _tblCustomerRepository;
 }
Esempio n. 2
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 tblCustomerService(ItblCustomerRepository _tblCustomerRepository, IUnitOfWork _UnitOfWork, ItblCustomerGroupService _tblCustomerGroupService, ItblCustomerGroupRepository _tblCustomerGroupRepository, ItblAccessLevelRepository _tblAccessLevelRepository)
 {
     this._tblCustomerRepository      = _tblCustomerRepository;
     this._UnitOfWork                 = _UnitOfWork;
     this._tblCustomerGroupService    = _tblCustomerGroupService;
     this._tblCustomerGroupRepository = _tblCustomerGroupRepository;
     this._tblAccessLevelRepository   = _tblAccessLevelRepository;
 }
 public API_CustomerService(ItblCustomerRepository _tblCustomerRepository, IUnitOfWork _UnitOfWork)
 {
     this._tblCustomerRepository = _tblCustomerRepository;
     this._UnitOfWork            = _UnitOfWork;
 }
 public API_tblCardService(ItblCardRepository _tblCardRepository, ItblCardGroupRepository _tblCardGroupRepository, ItblCustomerRepository _tblCustomerRepository, ItblCustomerGroupRepository _tblCustomerGroupRepository, ItblAccessLevelRepository _tblAccessLevelRepository, IUnitOfWork _UnitOfWork)
 {
     this._tblCardRepository      = _tblCardRepository;
     this._tblCardGroupRepository = _tblCardGroupRepository;
     this._UnitOfWork             = _UnitOfWork;
 }