API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IPropertyRepository.cs 590B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using UnivateProperties_API.Containers.Property;
  4. using UnivateProperties_API.Model.Property;
  5. namespace UnivateProperties_API.Repository.Properties
  6. {
  7. public interface IPropertyRepository : IRepository<Property>
  8. {
  9. List<PropertyDisplay> GetDisplay();
  10. List<PropertyDisplay> GetDisplay(Func<Property, bool> where);
  11. List<PropertyDisplay> GetDisplay(string Keyword);
  12. List<PropertyDisplay> GetDisplay(string type, string propertyType, string province, string city, string suburb, string propType);
  13. }
  14. }