15 lines
287 B
C#
15 lines
287 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Falcon.DI.Test
|
|||
|
{
|
|||
|
[FalconDIRegister]
|
|||
|
public abstract class AbstractWithDi
|
|||
|
{
|
|||
|
public AbstractWithDi() { }
|
|||
|
}
|
|||
|
|
|||
|
public class ClassFromAbstractWithDi:AbstractWithDi { }
|
|||
|
}
|