refactoring
This commit is contained in:
parent
797e4d381a
commit
8b5e50626e
40 changed files with 161 additions and 103 deletions
|
|
@ -32,4 +32,4 @@ namespace YavscLib
|
|||
get; set;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
10
YavscLib/Workflow/IQuery.cs
Normal file
10
YavscLib/Workflow/IQuery.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace YavscLib.Models.Workflow
|
||||
{
|
||||
using YavscLib;
|
||||
|
||||
public interface IQuery: IBaseTrackedEntity
|
||||
{
|
||||
QueryStatus Status { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -18,7 +18,8 @@
|
|||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
namespace Yavsc.Interfaces
|
||||
|
||||
namespace YavscLib.Interfaces
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
8
YavscLib/Workflow/IRequisition.cs
Normal file
8
YavscLib/Workflow/IRequisition.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
namespace Yavsc.Models
|
||||
{
|
||||
public interface IRequisition
|
||||
{
|
||||
bool Eval();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue