bugs & features

This commit is contained in:
Paul Schneider 2017-10-02 04:43:20 +02:00
commit 3fe818b4f1
21 changed files with 5512 additions and 33 deletions

View file

@ -7,6 +7,8 @@ using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Data.Entity;
using System.Threading;
using Yavsc.Models.Haircut;
using Yavsc.Models.IT.Maintaining;
using Yavsc.Models.IT.Fixing;
namespace Yavsc.Models
{
@ -283,5 +285,9 @@ namespace Yavsc.Models
public DbSet<BlogTag> BlogTags { get; set; }
public DbSet<ApplicationUser> ApplicationUser { get; set; }
public DbSet<Feature> Feature { get; set; }
public DbSet<Bug> Bug { get; set; }
}
}

View file

@ -10,11 +10,8 @@ namespace Yavsc.Models.IT.Maintaining
/// </summary>
public enum FeatureStatus: int
{
Ko,
Ok,
ToDoInterface,
ToDoImplementation,
ToDoModel,
ToDoSpecifications
Requested,
Accepted,
Implemented
}
}

View file

@ -12,8 +12,6 @@ namespace Yavsc.Models.IT.Fixing
Confirmed,
Rejected,
Feature,
FeatureRequest,
Fixed,
Implemented
Fixed
}
}