/// <summary>
        ///
        /// </summary>
        /// <param name="typeOfStore"></param>
        /// <returns></returns>
        public dynamic GetStore(string typeOfStore)
        {
            var ty = container.GetStore(typeOfStore);

            if (ty != null)
            {
                return(container.Get(ty as Type));
            }
            return(null);
        }