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