16 lines
424 B
C#
Raw Normal View History

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