コード例 #1
0
        public Report.ReportsPage OrganizationalBreakdown()
        {
            LoggerPage.LogStart(MethodBase.GetCurrentMethod().Name);

            this.reportsPage.Open(MyTrendMotherShip.OrganizationalBreakdown().Name);

            LoggerPage.LogEnd(MethodBase.GetCurrentMethod().Name);

            return(new Report.ReportsPage());
        }
コード例 #2
0
        public Report.ReportsPage YtdOverview()
        {
            LoggerPage.LogStart(MethodBase.GetCurrentMethod().Name);

            this.reportsPage.Open(MyTrendMotherShip.YtdOverview().Name);

            LoggerPage.LogEnd(MethodBase.GetCurrentMethod().Name);

            return(new Report.ReportsPage());
        }
コード例 #3
0
        public Report.ReportsPage RmList()
        {
            LoggerPage.LogStart(MethodBase.GetCurrentMethod().Name);

            this.reportsPage.Open(MyTrendMotherShip.RmList().Name, "My Trend");

            LoggerPage.LogEnd(MethodBase.GetCurrentMethod().Name);

            return(new Report.ReportsPage());
        }
コード例 #4
0
        public static ReportsEntity GetReport()
        {
            List <ReportsEntity> reports = new List <ReportsEntity>
            {
                MyClientMotherShip.CifList(),
                                 MyClientMotherShip.ClientGroupList(),
                                 MyClientMotherShip.ClientList(),
                                 MyClientMotherShip.KeyFigures(),
                                 MyClientMotherShip.KeyFigures13Months(),
                                 MyClientMotherShip.OrganizationalBreakdown(),
                                 MyClientMotherShip.OrganizationalBreakdown13Months(),
                                 MyClientMotherShip.Profitability(),
                                 MyClientMotherShip.Profitability13Months(),
                                 MyClientMotherShip.RmList(),
                                 MyClientMotherShip.ServiceBreakdown(),
                                 MyClientMotherShip.ServiceBreakdown13Months(),
                                 MyClientMotherShip.Stt(),
                                 MyClientMotherShip.TopBottom(),
                                 MyClientMotherShip.VolumeAndGrowth(),
                                 MyClientMotherShip.VolumeAndGrowth13Months(),
                                 MyContributionMotherShip.IcScorecard(),
                                 MyContributionMotherShip.IcScorecard13Months(),
                                 MyContributionMotherShip.LineManagerIcList(),
                                 MyContributionMotherShip.LineManagerRmList(),
                                 MyContributionMotherShip.ManagedCif(),
                                 MyContributionMotherShip.ManagedCifForIc(),
                                 MyContributionMotherShip.OrganizationalBreakdown(),
                                 MyContributionMotherShip.OrganizationalBreakdown13Months(),
                                 MyContributionMotherShip.RmList(),
                                 MyContributionMotherShip.RmScorecard(),
                                 MyContributionMotherShip.RmScorecard13Months(),
                                 MyContributionMotherShip.SourceReport(),
                                 MyContributionMotherShip.SourceReport13Months(),
                                 MyContributionMotherShip.TeamPcScorecard(),
                                 MyContributionMotherShip.TeamPcScorecard13Months(),
                                 MySalesMotherShip.AssetClassBreakdown(),
                                 MySalesMotherShip.CifList(),
                                 MySalesMotherShip.OrganizationalBreakdown(),
                                 MySalesMotherShip.ProductList(),
                                 MySalesMotherShip.RmList(),
                                 MySalesMotherShip.TransactionList(),
                                 MyTrendMotherShip.CifList(),
                                 MyTrendMotherShip.Overview(),
                                 MyTrendMotherShip.RmList(),
                                 MyTrendMotherShip.YtdOverview(),
            };

            return(reports[new Random().Next(reports.Count)]);
        }