resurection af a name

This commit is contained in:
Paul Schneider 2018-05-04 13:22:49 +02:00
commit f01b7769d9
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();