Files
Check/MagicCarpetProject/MagicCarpetTests/Infrastructure/ConfigurationSalaryTest.cs
2025-04-10 09:38:24 +04:00

15 lines
344 B
C#

using MagicCarpetContracts.Infrastructure;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetTests.Infrastructure;
class ConfigurationSalaryTest : IConfigurationSalary
{
public double ExtraSaleSum => 10;
public int MaxConcurrentThreads => 4;
}