public PriceRangeRepository(IPropertyMatrixContext propertyMatrixContext, IMapToExisting<PriceRange, PriceRange> mapper)
        {
            Check.If(propertyMatrixContext).IsNotNull();
            Check.If(mapper).IsNotNull();

            _propertyMatrixContext = propertyMatrixContext;
            _mapper = mapper;
        }
        public AppointmentRepository(IPropertyMatrixContext propertyMatrixContext)
        {
            Check.If(propertyMatrixContext).IsNotNull();

            _propertyMatrixContext = propertyMatrixContext;
        }
        public SearchRepository(IPropertyMatrixContext propertyMatrixContext)
        {
            Check.If(propertyMatrixContext).IsNotNull();

            _propertyMatrixContext = propertyMatrixContext;
        }