8 lines
153 B
C#
8 lines
153 B
C#
using Autofac;
|
|
|
|
namespace e_suite.DependencyInjection;
|
|
|
|
public interface IIocRegistration
|
|
{
|
|
void RegisterTypes(ContainerBuilder builder);
|
|
} |