Esempio n. 1
0
 public List <DtoTag> GetTagByUser(long UserID)
 {
     try
     {
         _daltag = new DalTag();
         return(_daltag.GetTagByUser(UserID));
     }
     catch (Exception ex)
     {
         ex.ToExceptionless().Submit();
     }
     return(null);
 }