Click here to Skip to main content
15,897,315 members
Articles / Multimedia / GDI+

Internal Supply Chain, Visibility via 200 plus 3D Chart Reports - Part II

Rate me:
Please Sign up or sign in to vote.
5.00/5 (15 votes)
8 Oct 2009CPOL4 min read 53.8K   5.3K   46  
This article focuses on internal supply chain management systems visibility via chart reports, and provides assessment apparatus to manage and monitor activities spawned during business processes, hence paves the way for timely and precise business decisions.
using System;
using System.Collections.Generic;
using System.Text;

namespace ISCMS.Main
{
    class ListFactory
    {

        public ISCMS.Main.List BaseFactory(string Form)
        {

            switch (Form)
            {
                // Goods
                case "Goods_List":
                    return new MasterFiles.Goods.List();

                // Plant
                case "Plant_List":
                    return new Plant.EventList();

                // Procurement
                case "Procurement_List":
                    return new Procurement.EventList();

                // Manufacturing
                case "Manufacturing_List":
                    return new Manufacturing.EventList();

                // Job
                case "Job_List":
                    return new Manufacturing.JobList();

                // Warehouse List
                case "Warehouse_List":
                    return new Warehouse.EventList();

                // Carrier
                case "Carrier_List":
                    return new MasterFiles.Carrier.List();


              
                // Client
                case "Client_List":
                    return new MasterFiles.Client.List();

                // Employee
                case "Employee_List":
                    return new MasterFiles.Employee.List();

                // Supplier
                case "Supplier_List":
                    return new MasterFiles.Supplier.List();

                // Transporter
                case "Transporter_List":
                    return new MasterFiles.Transporter.List();


            }


            return new List() ;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.
This is a Organisation

33 members

Comments and Discussions