public bool ExportDataMaster(ObservableCollection <MasterEntity> masterlist, string FileName) { IExportDataBL exportbl = new ExportDataBL(); return(exportbl.ExportDataMaster(masterlist, FileName)); }
public bool ExportData(ObservableCollection <TransactionEntity> transactionlist, string FileName) { IExportDataBL exportbl = new ExportDataBL(); return(exportbl.ExportData(transactionlist, FileName)); }