using System; using System.Collections.Generic; using UnivateProperties_API.Containers.Property; using UnivateProperties_API.Model.Property; namespace UnivateProperties_API.Repository.Properties { public interface IPropertyRepository : IRepository { List GetDisplay(); List GetDisplay(Func where); List GetDisplay(string Keyword); List GetDisplay(string type, string propertyType, string province, string city, string suburb, string propType); List GetPropertyTypes(Func where); } }