示例#1
0
        /// <summary>
        /// To Obsolete Goal Element
        /// </summary>
        /// <param name="goalID"></param>
        /// <param name="IsDeleted"></param>
        /// <returns></returns>
        public string ObsoleteGoalElement(int goalID, string IsDeleted)
        {
            MNEGoalElementDAL MNEGoalElementDAL = new MNEGoalElementDAL();

            return(MNEGoalElementDAL.ObsoleteGoalElement(goalID, IsDeleted));
        }
示例#2
0
        /// <summary>
        /// To Load MNE Goal Element
        /// </summary>
        /// <returns></returns>
        public MNEGoalElementList LoadMNEGoalElement()
        {
            MNEGoalElementDAL MNEGoalElementDAL = new MNEGoalElementDAL();

            return(MNEGoalElementDAL.LoadMNEGoalElement());
        }
示例#3
0
        /// <summary>
        /// To Delete Goal Element
        /// </summary>
        /// <param name="GoalElementID"></param>
        /// <returns></returns>
        public string DeleteGoalElement(int GoalElementID)
        {
            MNEGoalElementDAL MNEGoalElementDAL = new MNEGoalElementDAL();

            return(MNEGoalElementDAL.DeleteGoalElement(GoalElementID));
        }
示例#4
0
        /// <summary>
        /// To Get All MNE Goal Element Details
        /// </summary>
        /// <returns></returns>
        public MNEGoalElementList GetAllMNEGoalElementDetails()
        {
            MNEGoalElementDAL MNEGoalElementDAL = new MNEGoalElementDAL();

            return(MNEGoalElementDAL.GetAllMNEGoalElementDetails());
        }
示例#5
0
        /// <summary>
        /// To Get MNE Goal Element Details by ID
        /// </summary>
        /// <param name="GOALElementID"></param>
        /// <returns></returns>
        public MNEGoalElementBOL GetMNEGoalElementDetailsbyID(int GOALElementID)
        {
            MNEGoalElementDAL MNEGoalElementDAL = new MNEGoalElementDAL();

            return(MNEGoalElementDAL.GetMNEGoalElementDetailsbyID(GOALElementID));
        }
示例#6
0
        /// <summary>
        /// To Update Goal Element
        /// </summary>
        /// <param name="MNEGoalElementBOLObj"></param>
        /// <returns></returns>
        public string UpdateGoalElement(MNEGoalElementBOL MNEGoalElementBOLObj)
        {
            MNEGoalElementDAL MNEGoalElementDALObj = new MNEGoalElementDAL();

            return(MNEGoalElementDALObj.UpdateMNEGoalElementDetails(MNEGoalElementBOLObj));
        }
示例#7
0
        /// <summary>
        /// To Insert MNE Goal Element Details
        /// </summary>
        /// <param name="GoalElementBOObj"></param>
        /// <returns></returns>
        public string InsertMNEGoalElementDetails(MNEGoalElementBOL GoalElementBOObj)
        {
            MNEGoalElementDAL MNEGoalElementDAL = new MNEGoalElementDAL();

            return(MNEGoalElementDAL.InsertMNEGoalElementDetails(GoalElementBOObj));
        }