14 lines
348 B
C#
Raw Normal View History

2024-11-27 00:03:35 +04:00
using System.Collections.Generic;
using YourNamespace.Entities;
namespace YourNamespace.Repositories
{
public interface IPlaneRepository
{
IEnumerable<Plane> ReadPlanes();
Plane ReadPlaneById(int id);
void CreatePlane(Plane plane);
void UpdatePlane(Plane plane);
void DeletePlane(int id);
}
}