Exemplo n.º 1
0
        private async Task <List <PRODUCT_TYPE> > FillProductTypeAsync()
        {
            var listProductType = await _service.GetAllProductTypeAsync();

            ViewData["products"] = new SelectList(listProductType, "IdProductType", "Name");
            return(listProductType);
        }