public IActionResult AddProduct()
        {
            Store store = _user.GetUserStore(User.Identity.Name);

            int id = _store.GetStoreCategoriesByStoreId(store.UserId).FirstOrDefault().Id;

            StoreCategory storeCategory = _store.GetStoreCategory(id);

            ViewBag.CategoryId = new SelectList(_store.GetCategories(storeCategory.CategoryId), "Id", "Name");
            ViewBag.BrandId    = new SelectList(_store.AllBrands(), "Id", "Name");

            return(View());
        }