Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
123456789101112 |
- using System.Collections.Generic;
- using UnivateProperties_API.Containers.Property;
- using UnivateProperties_API.Model.Properties;
-
- namespace UnivateProperties_API.Repository.Properties
- {
- public interface IPropertyImageRepository : IRepository<PropertyImage>
- {
- List<string> GetImages(int PropertyId);
- void Update(NewPropertyImages propertyImages);
- }
- }
|