Esempio n. 1
0
        public IActionResult IndexSingle(int typeId, int subtypeId)
        {
            IEnumerable <Furniture> customerInfo = _furnitureRepository.GetFurnitureByTypeIdAndSubtypeId(typeId, subtypeId);

            return(View(customerInfo));
        }