Skip to content

Commit b4f4ccf

Browse files
committed
Touched code format
1 parent 7535efe commit b4f4ccf

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

DirectSQL/Database.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ public delegate void ReadSqlResult<R,CMD,T,C,P>(SqlResult<R,CMD,T,C,P> result)
6060
where R : IDataReader
6161
where T : IDbTransaction
6262
where C : IDbConnection
63-
where P : IDataParameter,
64-
new();
63+
where P : IDataParameter, new();
6564

6665
/// <summary>
6766
/// Database class is entry point of DirectSQL library.
@@ -76,8 +75,7 @@ public abstract class Database<C,T,CMD,R,P>
7675
where T : IDbTransaction
7776
where CMD : IDbCommand
7877
where R : IDataReader
79-
where P : IDataParameter,
80-
new()
78+
where P : IDataParameter, new()
8179
{
8280
/// <summary>
8381
/// Asynchronous process with a connection

DirectSQL/SqlResult.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ public class SqlResult<R,CMD,T,C,P>:EnumerableObject<dynamic>,IDisposable
2222
where CMD : IDbCommand
2323
where T : IDbTransaction
2424
where C : IDbConnection
25-
where P : IDataParameter,
26-
new()
25+
where P : IDataParameter, new()
2726
{
2827
private R _reader;
2928
private CMD _command;

0 commit comments

Comments
 (0)