25 lines
558 B
C#
25 lines
558 B
C#
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();
|
|
}
|
|
}
|