Add project files.
This commit is contained in:
7
EmployeeLibrary/Data/ISqlDataAccess.cs
Normal file
7
EmployeeLibrary/Data/ISqlDataAccess.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace EmployeeLibrary.Data
|
||||
{
|
||||
public interface ISqlDataAccess
|
||||
{
|
||||
Task<List<T>> LoadDataAsync<T, U>(string sql, U parameters, string connectionStringName = "Default");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user