Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112 |
- using System.Collections.Generic;
- using UnivateProperties_API.Containers.Misc;
- using UnivateProperties_API.Model.Misc;
-
- namespace UnivateProperties_API.Repository.Misc
- {
- public interface ICarouselRepository : IRepository<Carousel>
- {
- List<CarouselList> GetCarouselItems();
- CarouselList GetCarousel(int id);
- }
- }
|