mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
290 B
C#
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) { }
|
|
}
|
|
}
|
|
}
|