API
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

IPropertyImageRepository.cs 381B

123456789101112
  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 IPropertyImageRepository : IRepository<PropertyImage>
  7. {
  8. List<string> GetImages(int PropertyId);
  9. void Update(NewPropertyImages propertyImages);
  10. }
  11. }