Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreContracts/DI/IImplementationExtension.cs
2023-05-02 11:38:30 +04:00

21 lines
480 B
C#

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