CourseWork_ServiceStation/ServiceStation/ServiceStationContracts/BusinessLogicsContracts/ITechnicalWorkLogic.cs

22 lines
688 B
C#

using ServiceStationContracts.BindingModels;
using ServiceStationContracts.SearchModels;
using ServiceStationContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationContracts.BusinessLogicsContracts
{
public interface ITechnicalWorkLogic
{
List<TechnicalWorkViewModel>? ReadList(TechnicalWorkSearchModel? model);
TechnicalWorkViewModel? ReadElement(TechnicalWorkSearchModel? model);
bool Create(TechnicalWorkBindingModel model);
bool Update(TechnicalWorkBindingModel model);
bool Delete(TechnicalWorkBindingModel model);
}
}