resurection af a name
This commit is contained in:
parent
86910f5e2a
commit
f01b7769d9
2 changed files with 9 additions and 1 deletions
7
Yavsc.Server/Interfaces/INamedObject.cs
Normal file
7
Yavsc.Server/Interfaces/INamedObject.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace Yavsc.Server.Interfaces
|
||||
{
|
||||
public interface INamedObject
|
||||
{
|
||||
string Name { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,8 @@
|
|||
using Yavsc.Server.Interfaces;
|
||||
|
||||
namespace Yavsc.Models.Process
|
||||
{
|
||||
public abstract class NamedRequisition : IRequisition
|
||||
public abstract class NamedRequisition : IRequisition, INamedObject
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public abstract bool Eval();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue