Beispiel #1
0
 public ActionResult Add(AddVModel vModel)
 {
     if (ModelState.IsValid)
     {
         CollectionService service = new CollectionService();
         service.Add(vModel.CollectionEntity);
     }
     return(View(vModel));
 }