2024-04-18 20:24:26 +04:00
|
|
|
|
using SewingDressesContracts.BindingModels;
|
|
|
|
|
using SewingDressesContracts.SearchModels;
|
2024-04-18 20:04:28 +04:00
|
|
|
|
using SewingDressesContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SewingDressesContracts.StoragesContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IImplementStorage
|
|
|
|
|
{
|
|
|
|
|
List<ImplementViewModel> GetFullList();
|
|
|
|
|
List<ImplementViewModel> GetFilteredList(ImplementSearchModel model);
|
|
|
|
|
ImplementViewModel? GetElement(ImplementSearchModel model);
|
2024-04-18 20:24:26 +04:00
|
|
|
|
ImplementViewModel? Insert(ImplementBindingModel? model);
|
|
|
|
|
ImplementViewModel? Update(ImplementBindingModel? model);
|
|
|
|
|
ImplementViewModel? Delete(ImplementBindingModel? model);
|
2024-04-18 20:04:28 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|