using Subd_4.BindingModels; using Subd_4.SearchModels; using Subd_4.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Subd_4.StoragesContracts { public interface IProjectStorage { List GetFullList(); List GetFilteredList(ProjectSearchModel model); ProjectViewModel? GetElement(ProjectSearchModel model); ProjectViewModel? Insert(ProjectBindingModel model); ProjectViewModel? Update(ProjectBindingModel model); ProjectViewModel? Delete(ProjectBindingModel model); } }