Add controler, domain and service about "Tunnel"

This commit is contained in:
Sébastien ANDRE
2023-05-03 14:23:07 +02:00
parent 738b0aa439
commit 8b5a3f274e
11 changed files with 230 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
using skydiveLogs_api.Domain;
using System.Collections.Generic;
namespace skydiveLogs_api.DomainBusiness.Interfaces
{
public interface ITunnelService
{
#region Public Methods
IEnumerable<Tunnel> GetAllTunnels();
Tunnel GetTunnelById(int id);
#endregion Public Methods
}
}