Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
12345678910111213 |
- 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);
- void UpdateToPhysical();
- }
- }
|