Example #1
0
 public ICollection <PropertyType> GetAll()
 {
     return(_propertyTypeRepository.GetAll());
 }
Example #2
0
        public IEnumerable <PropertyType> GetPropertyTypes()
        {
            var propertyTypes = propertyTypeRepository.GetAll();

            return(propertyTypes);
        }
Example #3
0
        public ActionResponse <IQueryable <PropertyTypeDto> > GetAll(params Enums.Status[] statuses)
        {
            var response = _propertyTypeRepository.GetAll(statuses);

            return(response);
        }