Пример #1
0
 private void InsertTag(string tags, int docId)
 {
     if (!string.IsNullOrEmpty(tags))
     {
         Service.Bll.Doc.D_TagBLL bll = new TMM.Service.Bll.Doc.D_TagBLL();
         string[] tagarr = tags.Split(' ');
         bll.UpdateFromDoc(tagarr, docId);
     }
 }
Пример #2
0
 public void Initialize()
 {
     DCommentBll    = new TMM.Service.Bll.Doc.D_CommentBLL();
     DDocInfoBll    = new TMM.Service.Bll.Doc.DDocInfoBLL();
     SCatalogBll    = new TMM.Service.Bll.Sys.S_CatalogBLL();
     DownloadLogBll = new TMM.Service.Bll.Doc.DownloadLogBLL();
     TReqDocBll     = new TMM.Service.Bll.Doc.TReqDocBLL();
     TJoinDocBll    = new TMM.Service.Bll.Doc.TJoinDocBLL();
     DTagBll        = new TMM.Service.Bll.Doc.D_TagBLL();
 }
Пример #3
0
 public void Initialize()
 {
     UserInfoBll   = new TMM.Service.Bll.User.U_UserInfoBLL();
     MessageBll    = new TMM.Service.Bll.User.M_MessageBLL();
     DocInfoBll    = new TMM.Service.Bll.Doc.DDocInfoBLL();
     MCatalogBll   = new TMM.Service.Bll.Doc.MCatalogBLL();
     MFavoriteBll  = new TMM.Service.Bll.Doc.MFavoriteBLL();
     DTagBll       = new TMM.Service.Bll.Doc.D_TagBLL();
     MPurchaseBll  = new TMM.Service.Bll.User.MPurchaseBLL();
     MAccountBll   = new TMM.Service.Bll.User.MAccountBLL();
     TReqDocBll    = new TMM.Service.Bll.Doc.TReqDocBLL();
     AccountLogBll = new TMM.Service.Bll.Order.AccountLogBLL();
 }
Пример #4
0
 private void InsertTag(string tags,int docId)
 {
     if (!string.IsNullOrEmpty(tags))
     {
         Service.Bll.Doc.D_TagBLL bll = new TMM.Service.Bll.Doc.D_TagBLL();
         string[] tagarr = tags.Split(' ');
         bll.UpdateFromDoc(tagarr, docId);
     }
 }