source: Application/Dal/ApplicationStorage/DataAccess/Abstract/ISearchDa.cs

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 645 bytes
Line 
1using Models.DataTransferObjects.Serach;
2using Models.JSON;
3using System;
4using System.Collections.Generic;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8
9namespace Dal.ApplicationStorage.DataAccess.Abstract
10{
11 public interface ISearchDa
12 {
13 Task<List<SearchLocationDTO>> GetLocations();
14 Task<List<SearchBrandsDTO>> GetVehicleBrands();
15 Task<List<CarsDTO>> GetVehiclesBySearchParameters(SearchJSON data);
16 Task<List<CarsDTO>> GetAllVehicles();
17 Task<List<CarsDTO>> GetVehilcesByLocation(SearchJSON data);
18 Task<List<CarsDTO>> GetVehiclesByBrand(SearchJSON data);
19 }
20}
Note: See TracBrowser for help on using the repository browser.