Laservall_manager_system/VOL.Core/Extensions/AutofacManager/AutofacContainerModule.cs

15 lines
333 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
using VOL.Core.Extensions;
using System;
using VOL.Core.Configuration;
namespace VOL.Core.Extensions.AutofacManager
{
public class AutofacContainerModule
{
public static TService GetService<TService>() where TService:class
{
return typeof(TService).GetService() as TService;
}
}
}