ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmContracts/StoragesContracts/IComponentStorage.cs
aleksandr chegodaev 39c1538546 lab4
2024-05-10 23:48:48 +04:00

22 lines
733 B
C#

using LawFirmContracts.BindingModels.BindingModels;
using LawFirmContracts.SearchModels;
using LawFirmContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.StoragesContracts
{
public interface IComponentStorage
{
List<ComponentViewModel> GetFullList();
List<ComponentViewModel> GetFilteredList(ComponentSearchModel model);
ComponentViewModel? GetElement(ComponentSearchModel model);
ComponentViewModel? Insert(ComponentBindingModel model);
ComponentViewModel? Update(ComponentBindingModel model);
ComponentViewModel? Delete(ComponentBindingModel model);
}
}