2024-05-13 21:57:51 +04:00

18 lines
423 B
C#

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