21 lines
499 B
C#
21 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GarmentFactoryContracts.DependencyInjection
|
|
{
|
|
/// <summary>
|
|
/// Интерфейс для регистрации зависимостей в модулях
|
|
/// </summary>
|
|
public interface IImplementationExtension
|
|
{
|
|
public int Priority { get; }
|
|
/// <summary>
|
|
/// Регистрация сервисов
|
|
/// </summary>
|
|
public void RegisterServices();
|
|
}
|
|
}
|