зеркало из https://github.com/microsoft/Omex.git
14 строки
403 B
C#
14 строки
403 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
namespace Microsoft.Omex.Extensions.Hosting.Services.Remoting.UnitTests
|
|
{
|
|
internal class MockServiceWithDependencies : IMockService
|
|
{
|
|
private readonly IMockServiceDependency m_dependency;
|
|
|
|
public MockServiceWithDependencies(IMockServiceDependency dependency) =>
|
|
m_dependency = dependency;
|
|
}
|
|
}
|