21 lines
574 B
C#
21 lines
574 B
C#
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);
|
|
}
|
|
}
|