Files
codeql/csharp/ql/test/resources/stubs/NHibernate.cs
2019-03-11 09:38:22 +00:00

19 lines
290 B
C#

namespace NHibernate
{
public interface ISession
{
void Delete(string query);
T Query<T>();
void Save(object obj);
}
namespace SqlCommand
{
public class SqlString
{
public SqlString(string sql) { }
}
}
}