| 1234567891011121314151617 | using System;
using System.Collections.Generic;
using UnivateProperties_API.Containers.Property;
using UnivateProperties_API.Model.Properties;
namespace UnivateProperties_API.Repository.Properties
{
    public interface IPropertyRepository : IRepository<Property>
    {
        List<PropertyDisplay> GetDisplay();
        List<PropertyDisplay> GetDisplay(Func<Property, bool> where);
        List<PropertyDisplay> GetDisplay(PropertySearch search);        
        List<PropertyDisplay> GetLatestDisplay();
        List<PropertyType> GetPropertyTypes(Func<PropertyType, bool> where);
        List<PropertyList> GetPropertyList(string Type, int By);
    }
}
 |