25 lines
695 B
C#
25 lines
695 B
C#
using SecuritySystemContracts.BindingModels;
|
|
using SecuritySystemContracts.SearchModels;
|
|
using SecuritySystemContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SecuritySystemContracts.BusinessLogicsContracts
|
|
{
|
|
//бизнес-логика для компонентов
|
|
public interface ISensorLogic
|
|
{
|
|
List<SensorViewModel>? ReadList(SensorSearchModel? model);
|
|
|
|
SensorViewModel? ReadElement(SensorSearchModel model);
|
|
|
|
bool Create(SensorBindingModel model);
|
|
|
|
bool Update(SensorBindingModel model);
|
|
|
|
bool Delete(SensorBindingModel model);
|
|
}
|
|
} |