potential rewrite of DAM to be single non-generic instance

This commit is contained in:
2020-10-15 23:05:21 -04:00
parent 82245a693f
commit 7ad01a2586
5 changed files with 181 additions and 5 deletions

View File

@ -37,5 +37,11 @@ namespace COA.EnterpriseServices.DataAccess.QuickBase
// we'll never get data from QB
return null;
}
public ICollection<T> Raw(string command, params object[] parameters)
{
// not supported
return null;
}
}
}