12 lines
279 B
C#
12 lines
279 B
C#
namespace FurnitureAssemblyContracts.DI
|
|
{
|
|
public interface IImplementationExtension
|
|
{
|
|
public int Priority { get; }
|
|
/// <summary>
|
|
/// Регистрация сервисов
|
|
/// </summary>
|
|
public void RegisterServices();
|
|
}
|
|
}
|