API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }