コード例 #1
0
 private void SetDeptScoreCard()
 {
     MicroBSC.BSC.Biz.Biz_Bsc_Score_Card objBSC = new MicroBSC.BSC.Biz.Biz_Bsc_Score_Card();
     ultraLegend.Clear();
     ultraLegend.DataSource = objBSC.GetEstDeptTotalScoreForMap
                                  (this.IEstTermRefID
                                  , this.IYmd
                                  , this.ISumType
                                  , this.IEstDeptID
                                  , this.IExtKpiYN
                                  );
     ultraLegend.DataBind();
 }
コード例 #2
0
    private void SetDeptScoreCard()
    {
        MicroBSC.BSC.Biz.Biz_Bsc_Score_Card objBSC = new MicroBSC.BSC.Biz.Biz_Bsc_Score_Card();
        DataSet rDs = objBSC.GetEstDeptTotalScoreForMap
                          (this.IEstTermRefID
                          , this.IYmd
                          , this.ISumType
                          , this.IEstDeptID
                          , this.IExtKpiYN
                          );

        ultraLegend.DataSource = rDs.Tables[0].DefaultView;
        ultraLegend.DataBind();
    }