2024-05-19 00:34:32 +05:00

10 lines
159 B
C#

namespace AutomobilePlantContracts.DI
{
public interface IBusinessLogicExtension
{
public int Priority { get; }
public void RegisterServices();
}
}