Last change
on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 17 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
645 bytes
|
Rev | Line | |
---|
[f5f7c24] | 1 | using Models.DataTransferObjects.Serach;
|
---|
| 2 | using Models.JSON;
|
---|
| 3 | using System;
|
---|
| 4 | using System.Collections.Generic;
|
---|
| 5 | using System.Linq;
|
---|
| 6 | using System.Text;
|
---|
| 7 | using System.Threading.Tasks;
|
---|
| 8 |
|
---|
| 9 | namespace 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.