27 lines
779 B
C#
27 lines
779 B
C#
using AutomobilePlantContracts.BindingModels;
|
|
using AutomobilePlantContracts.SearchModels;
|
|
using AutomobilePlantContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutomobilePlantContracts.StorageContracts
|
|
{
|
|
public interface IImplementerStorage
|
|
{
|
|
List<ImplementerViewModel> GetFullList();
|
|
|
|
List<ImplementerViewModel> GetFilteredList(ImplementerSearchModel model);
|
|
|
|
ImplementerViewModel? GetElement(ImplementerSearchModel model);
|
|
|
|
ImplementerViewModel? Insert(ImplementerBindingModel model);
|
|
|
|
ImplementerViewModel? Update(ImplementerBindingModel model);
|
|
|
|
ImplementerViewModel? Delete(ImplementerBindingModel model);
|
|
}
|
|
}
|