예제 #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();
        }
예제 #2
0
        public static Supplier NewSupplier(int id)
        {
            Supplier newEntity = new Supplier();
            newEntity._id = id;

            return newEntity;
        }