ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/DI/IImplementationExtension.cs

15 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.DI
{
public interface IImplementationExtension
{
public int Priority { get; }
public void RegisterServices();
}
}