API
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IPropertyImageRepository.cs 277B

12345678910
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Model.Properties;
  3. namespace UnivateProperties_API.Repository.Properties
  4. {
  5. public interface IPropertyImageRepository : IRepository<PropertyImage>
  6. {
  7. List<string> GetImages(int PropertyId);
  8. }
  9. }