Example #1
0
 public List <DtoTag> GetTag(string WebSiteName, string premalink, string WebsiteURL, string tagtype)
 {
     try
     {
         _daltag = new DalTag();
         return(_daltag.GetTag(WebSiteName, premalink, WebsiteURL, tagtype));
     }
     catch (Exception ex)
     {
         ex.ToExceptionless().Submit();
     }
     return(null);
 }
Example #2
0
 public DtoTag GetTag(int tagid, int userid)
 {
     try
     {
         _daltag = new DalTag();
         return(_daltag.GetTag(tagid, userid));
     }
     catch (Exception ex)
     {
         ex.ToExceptionless().Submit();
     }
     return(null);
 }