Example #1
0
        public ActionResult AddTechnicalData(TechnicalDataVM technicalDataVM)
        {
            string id = Session["GuidProd"].ToString();

            technicalDataVM.Id = Guid.Parse(id);
            TechnicalDataVM.AddTechnicalData(technicalDataVM);
            return(View("Index"));
        }
Example #2
0
 public ActionResult Details()
 {
     return(View(TechnicalDataVM.GetTechnicalDataById()));
 }