21 lines
618 B
C#
21 lines
618 B
C#
|
using AircraftPlantContracts.BindingModels;
|
|||
|
using AircraftPlantContracts.ViewModels;
|
|||
|
using AircraftPlantContracts.SearchModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AircraftPlantContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IPlaneLogic
|
|||
|
{
|
|||
|
List<PlaneViewModel>? ReadList(PlaneSearchModel? model);
|
|||
|
PlaneViewModel? ReadElement(PlaneSearchModel model);
|
|||
|
bool Create(PlaneBindingModel model);
|
|||
|
bool Update(PlaneBindingModel model);
|
|||
|
bool Delete(PlaneBindingModel model);
|
|||
|
}
|
|||
|
}
|