private string GetWDBS(string prjID)
        {
            StepPushBLL bll = new StepPushBLL();

            return(bll.GetWDBS(prjID));
        }
        private bool CanPush(string v)
        {
            StepPushBLL bll = new StepPushBLL();

            return(bll.CanPush(v));
        }
        private string SendPostMessage(StepPushJsonModel pushStr)
        {
            StepPushBLL bll = new StepPushBLL();

            return(bll.SendPostMessage(pushStr));
        }