public LocationService()
 {
     _locationRepository = new LocationRepository();
     _countryRepository  = new CountryRepository();
     _timeZoneRepository = new TimeZoneRepository();
     _sortingService     = new SortingService();
     _paginationService  = new PaginationService();
 }
 public CostCenterService()
 {
     _costCenterRepository = new CostCenterRepository();
     _sortingService       = new SortingService();
     _paginationService    = new PaginationService();
 }
 public NationalityService()
 {
     _nationalityRepository = new NationalityRepository();
     _sortingService        = new SortingService();
     _paginationService     = new PaginationService();
 }
 public EducationService()
 {
     _educationRepository = new EducationRepository();
     _sortingService      = new SortingService();
     _paginationService   = new PaginationService();
 }
 public MembershipService()
 {
     _membershipRepository = new MembershipRepository();
     _sortingService       = new SortingService();
     _paginationService    = new PaginationService();
 }
 public LicenseService()
 {
     _licenseRepository = new LicenseRepository();
     _sortingService    = new SortingService();
     _paginationService = new PaginationService();
 }
Exemplo n.º 7
0
 public SkillService()
 {
     _skillRepository   = new SkillRepository();
     _sortingService    = new SortingService();
     _paginationService = new PaginationService();
 }
Exemplo n.º 8
0
 public LanguageService()
 {
     _languageRepository = new LanguageRepository();
     _sortingService     = new SortingService();
     _paginationService  = new PaginationService();
 }