GroupDocsGists
10/24/2017 - 1:31 PM

Examples-CSharp-GroupDocs.AssemblyExamples-GenerateReport-GenerateCommonMasterDetailReportFromJsoninOpenPresentation.cs

// For complete examples and data files, please go to https://github.com/groupdocsassembly/GroupDocs_Assembly_NET
//setting up source 
const String strDocumentTemplate = "Presentation Templates/Common Master-Detail_OpenDocument.odp";
//Setting up destination 
const String strDocumentReport = "Presentation Reports/Common Master-Detail_OpenDocument_Json Report.odp";
try
{
    //Instantiate DocumentAssembler class
    DocumentAssembler assembler = new DocumentAssembler();//initialize object of DocumentAssembler class 
    //Call AssembleDocument to generate Common master-detail report in open presentation format
    assembler.AssembleDocument(CommonUtilities.GetSourceDocument(strDocumentTemplate), CommonUtilities.SetDestinationDocument(strDocumentReport), DataLayer.GetCustomerDataFromJson(), "customers");
}
catch (Exception ex)
{
    Console.WriteLine(ex.Message);
}