Ejemplo n.º 1
0
        public ActionResult RosterAppIndex(FormCollection form)
        {
            List <VAT_RosterApplication> RosterApplicationsList = new List <VAT_RosterApplication>();
            VMLoggedUser LoggedInUser = Session["LoggedInUser"] as VMLoggedUser;

            RosterApplicationsList = RosterService.GetIndex(LoggedInUser);
            return(View(RosterApplicationsList));
        }