Наследование: System.Web.Services.Protocols.SoapHttpClientProtocol
Пример #1
0
 /// <summary>
 /// This constructor can be used when the need to share sessions among facades is enountered. For example, calling addDataSource
 /// on EmrSvc and then switching to use calls on this facade.
 /// </summary>
 /// <param name="emrSvcCookieContainer">The CookieContainer from the EmrSvc facade (could be from other facades also)</param>
 public SchedulingDao(System.Net.CookieContainer emrSvcCookieContainer)
 {
     _svc = new SchedulingSvc();
     _svc.CookieContainer = emrSvcCookieContainer;
 }
Пример #2
0
 public SchedulingDao()
 {
     _svc = new SchedulingSvc();
     _svc.CookieContainer = new System.Net.CookieContainer();
 }