resurection af a name

This commit is contained in:
2018-05-04 13:22:49 +02:00
parent b8a620ce7e
commit 407d957c46
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,7 @@
namespace Yavsc.Server.Interfaces
{
public interface INamedObject
{
string Name { get; set; }
}
}

View File

@ -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();