using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XYY.Data.Standard; namespace XYY.Service.Standard.UserService { public static class UserServiceRegionHelper { /// /// 注入用户信息数据操作方法 /// /// public static void RegionUserService(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); } } }