コード例 #1
0
        /// <summary>
        /// Creator : Ryan Morganti
        /// Created: 2020/03/19
        /// Approver:
        ///
        /// This Method returns the Positions Page View, which allows the user to view a list of positions
        /// This list will change depending on whether the user is authorized to activate/deactivate/create/deleted OR
        /// is browsing open positions to apply for
        /// </summary>
        /// <remarks>
        /// Updator: NA
        /// Updated: NA
        /// Update: NA
        ///
        /// </remarks>
        public ActionResult Positions()
        {
            var positions = _applicantManager.RetrieveAllPositions();

            return(View(positions));
        }