Tolitech / CodeGenerator.Extensions.DependencyInjection

Extensions Dependency Injection library used in projects created by the Code Generator tool.

Home Page:https://www.tolitech.com.br

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tolitech.CodeGenerator.Extensions.DependencyInjection

Extensions Dependency Injection library used in projects created by the Code Generator tool.

This project contains dependency injection extension methods and is used in projects generated by the Tolitech Code Generator tool.

Tolitech Code Generator Tool: http://www.tolitech.com.br

Examples:

public interface IRepository
{

}
public interface IPersonRepository : IRepository
{

}
public class PersonRepository : IPersonRepository
{

}
var serviceCollection = new ServiceCollection();
var assembly = Assembly.GetExecutingAssembly();
serviceCollection.RegisterAllTypes<IRepository>(assembly);

About

Extensions Dependency Injection library used in projects created by the Code Generator tool.

https://www.tolitech.com.br

License:MIT License


Languages

Language:C# 100.0%