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

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

            return(response);
        }