public ViewResult Index()
        {
            var model = _productionRepository.GetAllProduction();

            return(View(model));
        }