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 668B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using UnivateProperties_API.Containers.Property;
  4. using UnivateProperties_API.Model.Properties;
  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(PropertySearch search);
  12. List<PropertyDisplay> GetLatestDisplay();
  13. List<PropertyType> GetPropertyTypes(Func<PropertyType, bool> where);
  14. List<PropertyList> GetPropertyList(Func<Property, bool> where);
  15. }
  16. }