9 lines
236 B
C#
9 lines
236 B
C#
namespace LaaProductionWeb.Data.Interfaces
|
|
{
|
|
public interface IParameterCollection
|
|
{
|
|
IParameterCollection Add(string name, object value);
|
|
|
|
IParameterCollection AddFile(string name, byte[] fileContent);
|
|
}
|
|
} |