ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmContracts/StoragesContracts/IComponentStorage.cs

22 lines
733 B
C#
Raw Normal View History

2024-05-10 23:48:48 +04:00
using LawFirmContracts.BindingModels.BindingModels;
2024-04-13 01:58:54 +04:00
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);
}
}