laatzen/LaaProductionWeb/LaaProductionWeb.Data/Interfaces/ISqlParameters.cs
Stoyan Zlatev cf9dfe1915 Production Approvals,
sql client refactoring
2023-04-14 16:45:41 +02:00

9 lines
218 B
C#

namespace LaaProductionWeb.Data.Interfaces
{
public interface ISqlParameters
{
ISqlParameters Add(string name, object value);
ISqlParameters AddFile(string name, byte[] fileContent);
}
}