using ShipyardContracts.BindingModels; using ShipyardContracts.SearchModels; using ShipyardContracts.ViewModels; namespace ShipyardContracts.BusinessLogicsContracts { public interface IShipLogic { List? ReadList(ShipSearchModel? model); ShipViewModel? ReadElement(ShipSearchModel model); bool Create(ShipBindingModel model); bool Update(ShipBindingModel model); bool Delete(ShipBindingModel model); } }