I want to call the method of a service 1 in service 2 of same app. For example there is Method1 in service 1.
public void Method1(){
....}
and in service 2 my code will be as...
Service1 serviceOne_object=new Service1();
service1_object.Method1();
But this is not working.