Exemple #1
0
        public ActionResult AddConflict(ConflictsHomeVM vm)
        {
            vm.ConflictToAdd.User = Globals.LOGGED_IN_USER;

            InsertDAL insert = new InsertDAL();

            insert.OpenConnection();

            insert.InsertConflict(vm.ConflictToAdd);

            insert.CloseConnection();

            return(RedirectToAction("Index"));
        }
Exemple #2
0
        // GET: Conflict
        public ActionResult Index()
        {
            if (!Globals.LOGIN_STATUS)
            {
                return(RedirectToAction("Login", "Home"));
            }
            else
            {
                ConflictsHomeVM model = new ConflictsHomeVM();
                model.CurrentUser = Globals.LOGGED_IN_USER;

                GetDAL get = new GetDAL();
                get.OpenConnection();

                model.LstConflicts = get.GetConflictsByUser(model.CurrentUser);

                get.CloseConnection();

                return(View("ConflictsHome", model));
            }
        }