using System.Collections.Generic; using UnivateProperties_API.Containers.Property; using UnivateProperties_API.Model.Properties; namespace UnivateProperties_API.Repository.Properties { public interface IUserDefinedGroupRepository : IRepository { List GetFieldList(string name); List GetFieldList(string propertyType, string name, int propertyID); List GetFieldListByPropType(string propertyType); } }