10 lines
173 B
C#
Raw Normal View History

2024-04-03 18:55:36 +04:00
namespace PizzeriaContracts.DI
{
public interface IBusinessLogicExtension
{
public int Priority { get; }
public void RegisterServices();
}
}