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_tblCardService(ItblCardRepository _tblCardRepository, ItblCardGroupRepository _tblCardGroupRepository, ItblCustomerRepository _tblCustomerRepository, ItblCustomerGroupRepository _tblCustomerGroupRepository, ItblAccessLevelRepository _tblAccessLevelRepository, IUnitOfWork _UnitOfWork)
 {
     this._tblCardRepository      = _tblCardRepository;
     this._tblCardGroupRepository = _tblCardGroupRepository;
     this._UnitOfWork             = _UnitOfWork;
 }
Beispiel #3
0
 public tblAccessLevelService(ItblAccessLevelRepository _tblAccessLevelRepository, IUnitOfWork _UnitOfWork)
 {
     this._tblAccessLevelRepository = _tblAccessLevelRepository;
     this._UnitOfWork = _UnitOfWork;
 }