I developed an application.
it has a class library which consists of two types of classes which one is to implement object attributes. (Employee class with employee details such as employeename, email...) and the other class is to implement object methods (EmployeeService class which has methods related with employees such as GetEmployeeID, AddEmploee...)
But the thing is since they are seperate classes I have to create objects for both Employee and EmployeeService.
Employee emp = new Employee();
emp.name = 'jay';
EmployeeService empsvc = new EmployeeService();
empsvc.AddEmploee();
But i feel it is unneccessary to do like this.
So, is it better if i get these employee service methods as static methods and implement them in Employee class.
So that i can call Employee.AddEmploee(); like this.
If not, what is the best way to do it ?
Thanks,
Jay.