create UdpNotifier project. implemented IPluginPathProvider and IConfigFilePathProvider, IContainerHelper and INotifierManager.
16 lines
337 B
C#
16 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public interface IContainerHelper
|
|
{
|
|
T Get<T>();
|
|
IEnumerable<T> GetAll<T>();
|
|
void RegisterType(Type typeToBindTo, Type typeBeingBound, string uniqueName);
|
|
}
|
|
}
|