posted 15 years ago
In a typical Web application we have service layer and dao layer.
For example in service method i have four methods
Create(Customer customer)
Delete(Customer customer)
Update(Customer customer)
Get(Customer customer)
a) My doubt is all these 4 methods does not make use of class variables, so can i make all these 4 methods static?
b) Usually i never see in any application they make these static my question is when do we make methods static?