public PlacesService(IRegionRepo regionRepo, IMunicipalityRepo municipalityRepo, IRegionMunicipalitiesRepo regionMunicipalitiesRepo) { _regionRepo = regionRepo; _municipalityRepo = municipalityRepo; _regionMunicipalitiesRepo = regionMunicipalitiesRepo; }
public RegionService(IRegionRepo regionRepo) { this._regionRepo = regionRepo; }
public RegionController(IRegionRepo _regionRepo) { regionRepo = _regionRepo; }
public CompanyService(ICompanyRepo companyRepo, IRegionRepo regionRepo, IPostOfficeRepo officeRepo, IMapper mapper) { _companyRepo = companyRepo; _regionRepo = regionRepo; _mapper = mapper; }
public RegionService(IPostOfficeService officeService, IRegionRepo regionRepo, IMapper mapper) { _officeService = officeService; _regionRepo = regionRepo; _mapper = mapper; }