public RetractionsBillsEntity GetRetractionsBillsModel(RetractionsBillsQuery query)
        {
            IContributionInfoService service = ServiceContainer.Instance.Container.Resolve <IContributionInfoService>();
            RetractionsBillsEntity   model   = service.GetRetractionsBills(query);

            return(model);
        }
Exemplo n.º 2
0
        /// <summary>
        /// 获取撤稿信息实体
        /// </summary>
        /// <param name="query"></param>
        /// <returns></returns>
        public RetractionsBillsEntity GetRetractionsBillsModel(RetractionsBillsQuery query)
        {
            HttpClientHelper       clientHelper = new HttpClientHelper();
            RetractionsBillsEntity model        = clientHelper.Post <RetractionsBillsEntity, RetractionsBillsQuery>(GetAPIUrl(APIConstant.DRAFT_GETMODEL), query);

            if (model != null)
            {
                if (model.Handler > 0)
                {
                    model.HandlerName = GetMemberName(model.Handler);
                }
            }
            return(model);
        }
Exemplo n.º 3
0
 /// <summary>
 /// 获取撤稿信息
 /// </summary>
 /// <param name="pKID"></param>
 /// <returns></returns>
 public RetractionsBillsEntity GetRetractionsBills(RetractionsBillsQuery rQuery)
 {
     return(ContributionInfoBusProvider.GetRetractionsBills(rQuery));
 }
Exemplo n.º 4
0
 /// <summary>
 /// 获取撤稿信息
 /// </summary>
 /// <param name="pKID"></param>
 /// <returns></returns>
 public RetractionsBillsEntity GetRetractionsBills(RetractionsBillsQuery rQuery)
 {
     return(ContributionInfoDataAccess.Instance.GetRetractionsBills(rQuery));
 }