18 lines
423 B
C#
Raw Permalink Normal View History

2024-05-13 21:57:51 +04:00
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();
}
}