Example #1
0
 public PhoneTypeChecker(MANUFACTURERS m)
 {
     manu = m;
 }
Example #2
0
 public Client(MANUFACTURERS m)
 {
     manu = m;
 }
Example #3
0
        MANUFACTURERS manu;                      // This stores that manufacture

        public PhoneTypeChecker(MANUFACTURERS m) // This is the constructor that takes in the manufacture
        {
            manu = m;                            //manufacture to field
        }
Example #4
0
 public ProductTypeChecker(MANUFACTURERS m)
 {
     manu = m;
 }