Files
Slim/Slim.Tests/Models/DependentService2.cs
T
amacocian 30705c58cc Increase code coverage
Fix exception handling
2021-09-07 12:55:58 +02:00

13 lines
323 B
C#

namespace Slim.Tests.Models
{
public sealed class DependentService2 : IDependentService2
{
public IndependentService IndependentService { get; }
public DependentService2(IndependentService independentService)
{
this.IndependentService = independentService;
}
}
}