private void frmSaveTrasformation_Load(object sender, EventArgs e)
 {
     try
     {
         TrasformationName = null;
         VTLInt_Service.ServiceClient VTL_service = VTLInt_ServiceManager.GetClient(CommonItem.CurrentSettings.InteractionWebService);
         _transfInfo = VTL_service.GetTransformationList();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Пример #2
0
 private BaseArtefactInfo[] getTrasformationList()
 {
     try
     {
         BaseArtefactInfo[]           tsList;
         VTLInt_Service.ServiceClient VTL_service = VTLInt_ServiceManager.GetClient(CommonItem.CurrentSettings.InteractionWebService);
         tsList = VTL_service.GetTransformationList();
         return(tsList);
     }
     catch (Exception ex)
     {
         CommonItem.ErrManger.ErrorManagement(ex, false, this);
         return(null);
     }
 }