Ejemplo n.º 1
0
 public int Deltag(int tagid)
 {
     using (var helper = new SqlHelper())
     {
         int result = new InternalB2b_interesttag(helper).Deltag(tagid);
         return(result);
     }
 }
Ejemplo n.º 2
0
 public int EditTag(int id, string name, int tagtypeid, int issystemadd = 0, int comid = 0)
 {
     using (var helper = new SqlHelper())
     {
         int result = new InternalB2b_interesttag(helper).EditTag(id, name, tagtypeid, issystemadd, comid);
         return(result);
     }
 }
Ejemplo n.º 3
0
        public B2b_interesttag GetTagById(int id)
        {
            using (var helper = new SqlHelper())
            {
                var crmid = new InternalB2b_interesttag(helper).GetTagById(id);

                return(crmid);
            }
        }
Ejemplo n.º 4
0
        public IList <B2b_interesttag> GetTagListByTypeid(out int total, int typeid, int comid, string issystemadd)
        {
            using (var helper = new SqlHelper())
            {
                var crmid = new InternalB2b_interesttag(helper).GetTagListByTypeid(out total, typeid, comid, issystemadd);

                return(crmid);
            }
        }