PIbd-21_Medvedkov_Coursach/ComputerShopContracts/BusinessLogicContracts/IBatchLogic.cs

21 lines
574 B
C#
Raw Normal View History

2024-05-01 04:42:57 +04:00
using ComputerShopContracts.BindingModels;
using ComputerShopContracts.SearchModels;
using ComputerShopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.BusinessLogicContracts
{
public interface IBatchLogic
{
List<BatchViewModel>? ReadList(BatchSearchModel? model);
BatchViewModel? ReadElement(BatchSearchModel model);
bool Create(BatchBindingModel model);
bool Update(BatchBindingModel model);
bool Delete(BatchBindingModel model);
}
}