2024-06-11 12:18:10 +04:00
|
|
|
|
using Contracts.BindingModels;
|
|
|
|
|
using Contracts.SearchModels;
|
|
|
|
|
using Contracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ISellLogic
|
|
|
|
|
{
|
|
|
|
|
SellViewModel Create(SellBindingModel model);
|
|
|
|
|
|
2024-06-25 15:03:16 +04:00
|
|
|
|
SellViewModel Update(SellSearchModel model);
|
2024-06-11 12:18:10 +04:00
|
|
|
|
|
|
|
|
|
SellViewModel ReadElement(SellSearchModel model);
|
|
|
|
|
|
|
|
|
|
IEnumerable<SellViewModel> ReadElements(SellSearchModel? model);
|
|
|
|
|
|
|
|
|
|
SellViewModel Delete(SellSearchModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|