2024-08-26 19:12:46 +04:00
|
|
|
|
using ServiceStationContracts.HelperModels;
|
|
|
|
|
using ServiceStationContracts.SearchModels;
|
|
|
|
|
using System;
|
2024-08-20 10:37:39 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-08-26 19:12:46 +04:00
|
|
|
|
namespace ServiceStationContracts.StorageContracts
|
|
|
|
|
{
|
2024-08-20 10:37:39 +04:00
|
|
|
|
public interface IWorkClientStorage {
|
2024-08-26 19:12:46 +04:00
|
|
|
|
bool Add_Points(WorkClientModel model);
|
|
|
|
|
List<WorkClientModel> GetFilteredList(WorkClientSearchModel model);
|
|
|
|
|
|
|
|
|
|
}
|
2024-08-20 10:37:39 +04:00
|
|
|
|
}
|