Exemple #1
0
 public ActionResult AddCarType(CarType i_carType)
 {
     using (Context con = new Context())
     {
         con.CarTypes.Add(i_carType);
         con.SaveChanges();
     }
     return RedirectToAction("index");
 }
Exemple #2
0
 public ActionResult Details(CarType i_carType)
 {
     CarType carT = new CarType();
     carT = GetCarTypeById(i_carType.Id);
     if (carT !=null)
     {
         return View(carT);
     }
     return RedirectToAction("index");
 }
Exemple #3
0
 public ActionResult Delete(CarType i_carType)
 {
     using (Context context = new Context())
     {
         CarType carTypeToDelete = context.CarTypes.Where(ct => ct.Id == i_carType.Id).FirstOrDefault();
         if (carTypeToDelete != null)
         {
             context.CarTypes.Attach(carTypeToDelete);
             context.CarTypes.Remove(carTypeToDelete);
             context.SaveChanges();
         }
     }
     return RedirectToAction("index");
 }
Exemple #4
0
 public ActionResult Edit(CarType i_carType)
 {
     if (Request.HttpMethod == "POST")
     {
         using (Context con = new Context())
         {
             CarType carTypeToChange = con.CarTypes.Where(c => c.Id == i_carType.Id).FirstOrDefault();
             if (carTypeToChange != null)
             {
                 carTypeToChange.DailyCost = i_carType.DailyCost;
                 carTypeToChange.DelayDailyCost = i_carType.DelayDailyCost;
                 carTypeToChange.GearBox = i_carType.GearBox;
                 carTypeToChange.Manufacturer = i_carType.Manufacturer;
                 carTypeToChange.Model = i_carType.Model;
             }
             con.SaveChanges();
             return RedirectToAction("Index");
         }
     }
     CarType carT = GetCarTypeById(i_carType.Id);
     return View(carT);
 }
Exemple #5
0
 private CarType GetCarTypeById(int i_carTypeId)
 {
     using (Context con = new Context())
     {
         CarType ret_carT = new CarType();
         ret_carT= con.CarTypes.Where(carT => carT.Id == i_carTypeId).FirstOrDefault();
         return ret_carT;
     }
 }
Exemple #6
0
 //TODO add inovoiceve - client validation
 public ActionResult AddCarType()
 {
     CarType type = new CarType();
     return View(type);
 }