Factoring, Refactoring

* App.master:
* yavscModel.csproj:
* UserPost.aspx:
* UserPosts.aspx:
* StatusChange.cs:
* IContentProvider.cs:
* NpgsqlContentProvider.cs: 

* BlogsController.cs: unwanted message "Blogs"

* style.css: More visibility for messages and error
This commit is contained in:
Paul Schneider
2014-09-28 19:21:54 +02:00
parent 1307b62ecb
commit 71f1cfcf20
9 changed files with 49 additions and 29 deletions

View File

@ -47,11 +47,7 @@ namespace WorkFlowProvider
throw new NotImplementedException ();
}
public bool[] FinalStatuses {
get {
return new bool[] { false, true, true };
}
}
public string Order (IWFOrder c)
{
@ -70,7 +66,12 @@ namespace WorkFlowProvider
public string[] StatusLabels {
get {
return new string[] { "Created", "Success", "Error" };
return new string[] { "Created", "Validated", "Success", "Error" };
}
}
public bool[] FinalStatuses {
get {
return new bool[] { false, false, true, true };
}
}