8 lines
168 B
C#
8 lines
168 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpChat.Database {
|
|||
|
public interface IDatabaseConnection : IDisposable {
|
|||
|
IDatabaseCommand CreateCommand(object query);
|
|||
|
}
|
|||
|
}
|