ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryContracts/BusinessLogicsContracts/IImplementerLogic.cs
2024-04-30 22:57:42 +04:00

20 lines
618 B
C#

using FishFactoryContracts.BindingModels;
using FishFactoryContracts.ViewModels;
using FishFactoryContracts.SearchModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FishFactoryContracts.BusinessLogicsContracts
{
public interface IImplementerLogic
{
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
bool Create(ImplementerBindingModel model);
bool Update(ImplementerBindingModel model);
bool Delete(ImplementerBindingModel model);
}
}