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); }
public DtoTag GetTag(int tagid, int userid) { try { _daltag = new DalTag(); return(_daltag.GetTag(tagid, userid)); } catch (Exception ex) { ex.ToExceptionless().Submit(); } return(null); }