14 lines
347 B
C#
14 lines
347 B
C#
using SmallSoftwareContracts.Infrastructure;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmallSoftwareTests.Infrastructure;
|
|
|
|
class ConfigurationSalaryTest : IConfigurationSalary
|
|
{
|
|
public double ExtraSaleSum => 10;
|
|
public int MaxConcurrentThreads => 4;
|
|
} |