15 lines
527 B
C#
15 lines
527 B
C#
using ShipyardContracts.BindingModels;
|
|
using ShipyardContracts.SearchModels;
|
|
using ShipyardContracts.ViewModels;
|
|
namespace ShipyardContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IComponentLogic
|
|
{
|
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
|
bool Create(ComponentBindingModel model);
|
|
bool Update(ComponentBindingModel model);
|
|
bool Delete(ComponentBindingModel model);
|
|
}
|
|
}
|