public static T Get <T>() where T : class
        {
            Type t = typeof(T);

            return(InstanceContainer.Get <T>(t.FullName));
        }
        public static void Register <T>(string realTypeFullName) where T : class
        {
            Type t = typeof(T);

            InstanceContainer.Register <T>(t.FullName, realTypeFullName);
        }