Example #1
0
 public WorkflowAPI()
 {
     try
     {
         WebClientApplication.BuildItemWithCurrentContext(this);
     }
     catch (NullReferenceException)
     {
     }
 }
 ///<summary>
 ///Raises the <see cref="E:System.Web.UI.Control.Init"></see> event.
 /// Calls WebClientApplication.BuildItemWithCurrentContext after the events are handled
 /// to fire the DI engine.
 ///</summary>
 ///
 ///<param name="e">An <see cref="T:System.EventArgs"></see> object that contains the event data. </param>
 protected override void OnInit(EventArgs e)
 {
     base.OnInit(e);
     WebClientApplication.BuildItemWithCurrentContext(this);
 }
Example #3
0
 public ContractUploadApi()
 {
     WebClientApplication.BuildItemWithCurrentContext(this);
 }
Example #4
0
 public PostalCodeAutoCompleteService()
 {
     WebClientApplication.BuildItemWithCurrentContext(this);
     //Uncomment the following line if using designed components
     //InitializeComponent();
 }
 public ProductServiceProxy()
 {
     WebClientApplication.BuildItemWithCurrentContext(this);
 }
 public CustomerAutoCompleteService()
 {
     WebClientApplication.BuildItemWithCurrentContext(this);
 }
 public UpdateRatesApi()
 {
     WebClientApplication.BuildItemWithCurrentContext(this);
 }