using System.Collections.Generic; using CandyHouseBase.DataModels; namespace CandyHouseBase.Interfaces.BusinessLogicsContracts { public interface IPekarBusinessLogicContact { List GetAllPekars(); List GetAllDataOfPekar(string pekarId); PekarDataModel GetPekarByData(string data); void InsertPekar(PekarDataModel order); void UpdatePekar(PekarDataModel order); void DeletePekar(string id); void RestorePekar(string id); } }