//// GET: Items/Details/5
        //public async Task<IActionResult> Details(string id)
        //{
        //    if (id == null)
        //    {
        //        return NotFound();
        //    }

        //    var item = await _context.Items
        //        .Include(i => i.Color)
        //        .Include(i => i.ItemType)
        //        .FirstOrDefaultAsync(m => m.Id == id);
        //    if (item == null)
        //    {
        //        return NotFound();
        //    }

        //    return View(item);
        //}

        // GET: Items/Create
        public IActionResult Create()
        {
            ViewData["ColorId"]    = new SelectList(service.GetAllItemColorsAsync().Result, "Id", "Name");
            ViewData["ItemTypeId"] = new SelectList(service.GetAllItemTypesAsync().Result, "Id", "Name");
            return(View());
        }