public IActionResult ViewMaterials(int id)
        {
            var material = repo.GetMaterials(id);

            return(View(material));
        }