mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
30705c58cc
Fix exception handling
13 lines
323 B
C#
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;
|
|
}
|
|
}
|
|
}
|