16 lines
654 B
C#
16 lines
654 B
C#
using SoftwareInstallationContracts.BindingModels;
|
|
using SoftwareInstallationContracts.SearchModels;
|
|
using SoftwareInstallationContracts.ViewModels;
|
|
|
|
namespace SoftwareInstallationContracts.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);
|
|
}
|
|
} |