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
commit 71f1cfcf20
9 changed files with 49 additions and 29 deletions

View file

@ -4,7 +4,6 @@ using System.Web.Mvc;
namespace yavscModel.WorkFlow
{
public interface StatusChange { int Status {get;} DateTime date {get;} }
public interface IContentProvider : IProvider, IDisposable
{

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Web.Mvc;
namespace yavscModel.WorkFlow
{
public class StatusChange {
public int Status { get; set;}
public DateTime date { get; set;}
}
}