Beispiel #1
0
        public ActionResult CreateAndAddGun(string first, string last)
        {
            CreateShooterGun _gun = new CreateShooterGun();

            _gun.First = first;
            _gun.Last  = last;
            return(View(_gun));
        }
Beispiel #2
0
 public ActionResult CommitGunAddToShooter(CreateShooterGun g)
 {
     CommitGun(g);
     return(ShooterCommitGun(g.First, g.Last, g.gName));
 }