public static void AddTransient <TInterface, TImplementation>(this IContainerConfigurator container)
     where TImplementation : class, TInterface
 {
     container.AddTransient(typeof(TInterface), typeof(TImplementation));
 }