Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
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();
- }
- }
|