Ejemplo n.º 1
0
 public IQueryable <UserPersonalInfo> getDiffSchoolFriendsList(int user_id, int student_institution_id)
 {
     try
     {
         IQueryable <UserPersonalInfo> lstStudents = objUserInfoDAL.getDiffSchoolFriendsList(user_id, student_institution_id);
         return(lstStudents);
     }
     catch (Exception ex)
     {
         CubitExceptionUtility.CubitExceptionLog(ex.Message + "BAL: Error while fetching different school friends list " + ex.StackTrace + " " + ex.InnerException, this.GetType().BaseType.Name.ToString(), DateTime.Now.ToLongTimeString(), DateTime.Now.ToLongDateString());
         throw ex;
     }
 }