using System;

using System.Data;

using System.Data.SqlTypes;

using System.Data.SqlClient;

using System.Collections;

 

namespace YellowbridgeSoftwareInc.Info

{

      public class ProductsInfoCollection : CollectionBase

      {

            public ProductsInfo this[int index]

            {

                  get

                  {

                        return (ProductsInfo) this.List[index];

                  }

                  set

                  {

                        this.List[index] = value;

                  }

            }

           

            public void Add( ProductsInfo info )

            {

                  this.List.Add( info );

            }

           

           

      }

}