You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
374 B
18 lines
374 B
3 weeks ago
|
using ReZero.DependencyInjection;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace DependencyInjectionTest.Controllers
|
||
|
{
|
||
|
public class Class1:IClass1, IScopeContract
|
||
|
{
|
||
|
public string? a { get; set; } = "a";
|
||
|
}
|
||
|
public class Class2 : IScopeContract
|
||
|
{
|
||
|
public string? a2 { get; set; } = "a2";
|
||
|
}
|
||
|
public interface IClass1
|
||
|
{
|
||
|
}
|
||
|
}
|