Files
behavioral-patterns/src/MediatorPattern/GroundAirTrafficControl/IAirTrafficControlTower.cs
2016-07-14 12:22:02 +03:00

20 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MediatorPattern.GroundAirTrafficControl
{
/// <summary>
/// Mediator
/// </summary>
public interface IAirTrafficControlTower
{
Optional<Lane> RequestPermissionToLand(Plane plane);
bool RequestLaneForMaintainance(MaintainerTeam team, Lane lane);
}
}