There are Three main Object-Oriented Programming components in Axapta
1.Classes are blueprints that describe the objects derived from them. A class is a model classification of the methods and variables in a specific type of object.
2.Objects are instances of classes. Each instance has data members andlogic (methods) defined in the class.
3.Methods are functions (subroutines)associated with a class or an object. An object implements its behavior with methods.
1.Classes are blueprints that describe the objects derived from them. A class is a model classification of the methods and variables in a specific type of object.
2.Objects are instances of classes. Each instance has data members andlogic (methods) defined in the class.
3.Methods are functions (subroutines)associated with a class or an object. An object implements its behavior with methods.