2024-04-28 20:59:10 +04:00
|
|
|
|
using ElectronicsShopContracts.BindingModels;
|
|
|
|
|
using ElectronicsShopContracts.SearchModels;
|
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.StorageContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IOrderStorage
|
|
|
|
|
{
|
|
|
|
|
List<OrderViewModel> GetFullList();
|
2024-04-28 23:08:09 +04:00
|
|
|
|
List<OrderViewModel> GetFilteredList(OrderSearchModel model);
|
|
|
|
|
OrderViewModel? GetElement(OrderSearchModel model);
|
|
|
|
|
OrderViewModel? Insert(OrderBindingModel model);
|
|
|
|
|
OrderViewModel? Update(OrderBindingModel model);
|
|
|
|
|
OrderViewModel? Delete(OrderBindingModel model);
|
2024-04-28 20:59:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|