19 lines
335 B
C#
Executable File
19 lines
335 B
C#
Executable File
using MarketData.Interface;
|
|
|
|
namespace MarketData.Services
|
|
{
|
|
public class Arguments : IArguments
|
|
{
|
|
private readonly String[] _args;
|
|
|
|
public Arguments(String[] args)
|
|
{
|
|
_args = args ?? throw new ArgumentNullException(nameof(args));
|
|
}
|
|
|
|
public String[] GetArguments()
|
|
{
|
|
return _args;
|
|
}
|
|
}
|
|
} |