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.

IUserDefinedGroupRepository.cs 533B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Containers.Property;
  3. using UnivateProperties_API.Model.Properties;
  4. namespace UnivateProperties_API.Repository.Properties
  5. {
  6. public interface IUserDefinedGroupRepository : IRepository<UserDefinedGroup>
  7. {
  8. List<Group> GetFieldList(string name);
  9. List<Group> GetFieldList(string propertyType, string name, int propertyID);
  10. List<Group> GetFieldListByPropType(string propertyType);
  11. List<Group> GetSavedList(int PropertyId);
  12. }
  13. }