API
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ICarouselRepository.cs 341B

123456789101112
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Containers.Misc;
  3. using UnivateProperties_API.Model.Misc;
  4. namespace UnivateProperties_API.Repository.Misc
  5. {
  6. public interface ICarouselRepository : IRepository<Carousel>
  7. {
  8. List<CarouselList> GetCarouselItems();
  9. CarouselList GetCarousel(int id);
  10. }
  11. }