PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/DI/IImplementationExtension.cs

12 lines
275 B
C#
Raw Permalink Normal View History

2024-05-22 14:38:56 +04:00
namespace ConfectioneryContracts.DI
{
public interface IImplementationExtension
{
public int Priority { get; }
/// <summary>
/// Регистрация сервисов
/// </summary>
public void RegisterServices();
}
}