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.

ISearchLogRepository.cs 489B

1234567891011121314
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Containers.Property;
  3. using UnivateProperties_API.Containers.Timeshare;
  4. using UnivateProperties_API.Model.Logging;
  5. namespace UnivateProperties_API.Repository.Logging
  6. {
  7. public interface ISearchLogRepository: IRepository<SearchLog>
  8. {
  9. List<TimeshareSearchDisplay> GetTimeshareSearches();
  10. List<PropertySearchDispaly> GetPropertySearches();
  11. void SaveTimeshareSearch(TimeshareSearch item);
  12. }
  13. }