public LocationOperationsService(
     IMapper mapper,
     IServiceLocationOperationRepository opertationRepository)
 {
     _mapper = mapper;
     _opertationRepository = opertationRepository;
 }
 public SearchPageService(IServiceLocationRepository locationRepository,
                          IServiceLocationOperationRepository locationOperationRepository,
                          IServiceOperationRepository operationRepository)
 {
     _locationRepository          = locationRepository;
     _locationOperationRepository = locationOperationRepository;
     _operationRepository         = operationRepository;
 }