public static IGenericServiceContainer AddScoped <TService>(this IGenericServiceContainer services)
     where TService : class
 {
     services.RegisterScoped <TService>();
     return(services);
 }