public void ImportDocumentTemplate(string path) { LogonService oLogonService = new LogonService(); LogonReturnValue returnValue = new LogonReturnValue(); returnValue = oLogonService.Logon("msh", "4Dv4nc3d"); var documentTemplate = new ImportDocumentTemplate(); documentTemplate.Import(path); }
public void ExportDocumentTemplate(int[] docs, string path) { LogonService oLogonService = new LogonService(); LogonReturnValue returnValue = new LogonReturnValue(); returnValue = oLogonService.Logon("msh", "4Dv4nc3d"); var documentTemplate = new ExportDocumentTemplate(); documentTemplate.Export(docs, path); }
public void ImportAgenda(string path) { LogonService oLogonService = new LogonService(); LogonReturnValue returnValue = new LogonReturnValue(); returnValue = oLogonService.Logon("msh", "4Dv4nc3d"); var agenda = new ImportAgenda(); agenda.Import(path); }
public void ExportAgendasByClHeaderIds(Guid[] clHeaderIds, string path) { LogonService oLogonService = new LogonService(); LogonReturnValue returnValue = new LogonReturnValue(); returnValue = oLogonService.Logon("msh", "4Dv4nc3d"); var agenda = new ExportAgenda(); agenda.Export(clHeaderIds, path); }