PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantContracts/DependencyInjections/IImplementationExtension.cs

25 lines
558 B
C#
Raw Normal View History

2024-05-13 02:01:32 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantContracts.DependencyInjections
{
/// <summary>
/// Интерфейс для регистрации зависимостей в модулях
/// </summary>
public interface IImplementationExtension
{
/// <summary>
/// Приоритет
/// </summary>
public int Priority { get; }
/// <summary>
/// Регистрация сервисов
/// </summary>
public void RegisterServices();
}
}