mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
820b1c9c2e
Prepare integration project
13 lines
377 B
C#
13 lines
377 B
C#
namespace Slim.Tests.Models;
|
|
|
|
public sealed class DependentOnPrivateCtrService : IDependentOnPrivateCtrService
|
|
{
|
|
private readonly IPrivateConstructorService privateConstructorService;
|
|
|
|
public DependentOnPrivateCtrService(
|
|
IPrivateConstructorService privateConstructorService)
|
|
{
|
|
this.privateConstructorService = privateConstructorService;
|
|
}
|
|
}
|