Example #1
0
 public ActionResult Add(Core.Domain.Tank model)
 {
     _TankService = new TankService();
     _TankService.InsertTank(model);
     return(RedirectToAction("Index"));
 }