ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/DI/IImplementationExtension.cs
2024-06-01 17:37:58 +04:00

17 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.DI
{
public interface IImplementationExtension
{
public int Priority { get; }
/// <summary>
/// Регистрация сервисов
/// </summary>
public void RegisterServices();
}
}