10 lines
159 B
C#
Raw Normal View History

2024-05-19 00:34:32 +05:00
namespace AutomobilePlantContracts.DI
{
public interface IBusinessLogicExtension
{
public int Priority { get; }
public void RegisterServices();
}
}