namespace WIDESEA_Core.Extensions.AutofacManager { public class AutofacContainerModule { public static TService GetService() where TService : class { return typeof(TService).GetService() as TService; } } }