public LocationsAppService(IRepository <Machine> machineRepository, IRepository <Location> locationRepository, ILocationsExcelExporter locationsExcelExporter) { _locationRepository = locationRepository; _locationsExcelExporter = locationsExcelExporter; _machineRepository = machineRepository; }
public LocationsAppService(IRepository <Location> locationRepository, ILocationsExcelExporter locationsExcelExporter) { _locationRepository = locationRepository; _locationsExcelExporter = locationsExcelExporter; }