예제 #1
0
        /// <summary>
        /// To Update MNE Goal Eval Elements
        /// </summary>
        /// <param name="objMNEGoalEvalElementsBO"></param>
        /// <returns></returns>
        public string UpdateMNEGoalEvalElements(MNEGoalEvalElementsBO objMNEGoalEvalElementsBO)
        {
            MNEGoalEvalElementsDAL objMNEGoalEvalElementsDAL = new MNEGoalEvalElementsDAL(); //Data pass -to Database Layer

            try
            {
                return(objMNEGoalEvalElementsDAL.UpdateMNEGoalEvalElements(objMNEGoalEvalElementsBO));
            }
            catch
            {
                throw;
            }
            finally
            {
                objMNEGoalEvalElementsDAL = null;
            }
        }
예제 #2
0
        /// <summary>
        /// To Delete MNE Goal Eval Elements
        /// </summary>
        /// <param name="EvalelementID"></param>
        /// <returns></returns>
        public string DeleteMNEGoalEvalElements(int EvalelementID)
        {
            MNEGoalEvalElementsDAL objMNEGoalEvalElementsDAL = new MNEGoalEvalElementsDAL();

            return(objMNEGoalEvalElementsDAL.DeleteMNEGoalEvalElements(EvalelementID));
        }
예제 #3
0
        /// <summary>
        /// To Get MNE Goal Eval Elements By ID
        /// </summary>
        /// <param name="EvalelementID"></param>
        /// <returns></returns>
        public MNEGoalEvalElementsBO GetMNEGoalEvalElementsByID(int EvalelementID)
        {
            MNEGoalEvalElementsDAL objMNEGoalEvalElementsDAL = new MNEGoalEvalElementsDAL();

            return(objMNEGoalEvalElementsDAL.GetMNEGoalEvalElementsByID(EvalelementID));
        }
예제 #4
0
        /// <summary>
        /// To Get MNE Goal Eval Elements
        /// </summary>
        /// <param name="EvaluationID"></param>
        /// <returns></returns>
        public MNEGoalEvalElementsList GetMNEGoalEvalElements(int EvaluationID)
        {
            MNEGoalEvalElementsDAL objMNEGoalEvalElementsDAL = new MNEGoalEvalElementsDAL();

            return(objMNEGoalEvalElementsDAL.GetMNEGoalEvalElements(EvaluationID));
        }