22 lines
982 B
C#
22 lines
982 B
C#
using System;
|
|
|
|
namespace FlowScope.Container
|
|
{
|
|
public sealed class Container : IDisposable
|
|
{
|
|
public void RegisterInstance<T>(T instance) => throw new NotImplementedException();
|
|
public void RegisterFactory<T>(Func<Container, T> factory) => throw new NotImplementedException();
|
|
public void RegisterType<TInterface, TImplementation>() where TImplementation : TInterface => throw new NotImplementedException();
|
|
public void RegisterType<TImplementation>() => throw new NotImplementedException();
|
|
public void RegisterAssembly() => throw new NotImplementedException();
|
|
public T Resolve<T>() => throw new NotImplementedException();
|
|
public bool TryResolve<T>(out T value)
|
|
{
|
|
value = default;
|
|
throw new NotImplementedException();
|
|
}
|
|
public Container CreateScope() => throw new NotImplementedException();
|
|
public void Dispose() => throw new NotImplementedException();
|
|
}
|
|
}
|