We start with this kind of abpTemplates:
We have refrenced webService from another project in this one. Is it true that initiate one instance from WebService object in entire of project. if it is true. how?
If you want to create only 1 instance from your webservice proxy class then you have to add ISingletonDependency to your webservice proxy class and you have to create this servis via dependency injection. This way you can be sure that it'll be created only once.
public interface IPersonManager
{
//...
}
public class MyPersonManager : IPersonManager, ISingletonDependency
{
//...
}