refactor: Move some of the dependency injection code to the Common Library.

This commit is contained in:
real-zony
2022-10-06 12:45:01 +08:00
parent aa90e232f7
commit ecab0e0f5c
34 changed files with 60 additions and 73 deletions

View File

@@ -0,0 +1,9 @@
namespace ZonyLrcTools.Common.Infrastructure.DependencyInject
{
/// <summary>
/// 继承了本接口的类都会以瞬时的形式注入到 IoC 容器当中。
/// </summary>
public interface ITransientDependency
{
}
}