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? ReadList(BatchSearchModel? model); BatchViewModel? ReadElement(BatchSearchModel model); bool Create(BatchBindingModel model); bool Update(BatchBindingModel model); bool Delete(BatchBindingModel model); } }