mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
dd1b589b5d
* Implement DoNotInject attribute * Upgrade pipelines
13 lines
214 B
C#
13 lines
214 B
C#
using Slim.Attributes;
|
|
|
|
namespace Slim.Tests.Models
|
|
{
|
|
public sealed class DoNotInjectConstructorService
|
|
{
|
|
[DoNotInject]
|
|
public DoNotInjectConstructorService()
|
|
{
|
|
}
|
|
}
|
|
}
|