Example #1
0
 /// <summary>
 /// Method to Get StudentNotes Entity
 /// </summary>
 /// <param name="argEn">StudentNotes Entity is an Input.MatricNo as Input Property.</param>
 /// <returns>Returns StudentNotes Entity</returns>
 public StuNotesEn GetItem(StuNotesEn argEn)
 {
     try
     {
         StuNotesDAL loDs = new StuNotesDAL();
         return(loDs.GetItem(argEn));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 /// <summary>
 /// Method to Get List of StudentNotes
 /// </summary>
 /// <param name="argEn">StudentNotes Entity as an Input.Student MatricNo as Input Property</param>
 /// <returns>Returns List of StudentNotes</returns>
 public List <StuNotesEn> GetList(StuNotesEn argEn)
 {
     try
     {
         StuNotesDAL loDs = new StuNotesDAL();
         return(loDs.GetList(argEn));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #3
0
        /// <summary>
        /// Method to Update StudentNotes
        /// </summary>
        /// <param name="argEn">StudentNotes Entity is an Input.</param>
        /// <returns>Returns Boolean</returns>
        public bool Update(StuNotesEn argEn)
        {
            bool flag;

            using (TransactionScope ts = new TransactionScope())
            {
                try
                {
                    StuNotesDAL loDs = new StuNotesDAL();
                    flag = loDs.Update(argEn);
                    ts.Complete();
                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }
            return(flag);
        }