public static bool Insert(string tableName, Dictionary <string, string> dataset) { return(ExecuteQuery(QueryMaker.InsertQuery(tableName, dataset))); }
public static bool Insert <T>(T _Object, string schemaName = null, string tableName = null) { return(ExecuteQuery(QueryMaker.InsertQuery(_Object, schemaName, tableName))); }