Exemplo n.º 1
0
        public static void Main(string[] args)
        {
            StringHashtable stringhashtable = new StringHashtable();
            StringIntegerHashtable stringinthashtable = new StringIntegerHashtable();
            IntegerHashtable inthashtable = new IntegerHashtable();

            Product product = new Product("BG-01");
            Supplier supplier = new Supplier();
        }
Exemplo n.º 2
0
        public static Product NewProduct(string id)
        {
            Product newEntity = new Product();
            newEntity._id = id;

            return newEntity;
        }