// GET: Product
        public ActionResult Index()
        {
            StorageManager manager  = new StorageManager(UnitOfWork);
            Category       category = new Category()
            {
                Id   = Guid.NewGuid(),
                Name = "Hello Category"
            };

            manager.AddCategory(category);

            return(View());
        }