forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
15 lines
344 B
C#
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 ExtraMadeSum => 10;
|
|
public int MaxConcurrentThreads => 4;
|
|
}
|