public static DataTable MainTable() { var table = new DataTable("QOAMcorners"); table.AddColumns("Test Corner", "Another Corner"); table.AddRow(new[] { "123-123", "777-888" }); table.AddRow(new[] { "456-456", "" }); return table; }
public static DataTable AuthorsTable() { var table = new DataTable("Links"); table.AddColumns("eissn", "url"); table.AddRow(new[] { "1687-8140", "http://ade.sagepub.com/submission" }); table.AddRow(new[] { "2073-4395", "http://www.mdpi.com/journal/agronomy/submission" }); table.AddRow(new[] { "2372-0484", "http://www.aimspress.com/journal/Materials/submission" }); table.AddRow(new[] { "1687-7675", "http://www.hindawi.com/journals/aess/submission" }); return table; }
public static DataTable LicenseTable(string licenseName) { var table = new DataTable(licenseName); table.AddColumns("eISSN", "text"); table.AddRow(new[] { "0219-3094", "Discount of 100% on publication fee. Please contact your library for more information." }); table.AddRow(new[] { "0219-3116", "Some random text" }); table.AddRow(new[] { "0814-6039", "I'm Batman" }); table.AddRow(new[] { "0942-0940", "No, really." }); return table; }
public static DataTable AuthorsTable() { var table = new DataTable("Authors"); table.AddColumns("eissn", "Author email address", "Author name"); table.AddRow(new[] { "1687-8140", "[email protected]", "A. Caenen" }); table.AddRow(new[] { "2073-4395", "[email protected]", "Jeroen De Waele"}); table.AddRow(new[] { "2372-0484", "[email protected]", "Dolores Esquivel"}); table.AddRow(new[] { "1687-7675", "[email protected]", "E. Van Ranst"}); table.AddRow(new[] { "1234-7675", "[email protected],[email protected];[email protected]", "K. Test"}); return table; }
public static DataTable UniversitiesTable() { var table = new DataTable("Universities"); table.AddColumns("Domains", "Tabs"); table.AddRow(new[] { "ru.nl", "Sage" }); table.AddRow(new[] { "uu.nl", "Springer" }); table.AddRow(new[] { "uva.nl", "Springer, Sage" }); table.AddRow(new[] { "rug.nl", "Springer,Sage" }); table.AddRow(new[] { "ugent.be", "Springer; Sage" }); table.AddRow(new[] { "upc.cat", "Springer;Sage" }); return table; }