bugs & features
This commit is contained in:
parent
4d8f3b1086
commit
3fe818b4f1
21 changed files with 5512 additions and 33 deletions
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,11 +10,8 @@ namespace Yavsc.Models.IT.Maintaining
|
|||
/// </summary>
|
||||
public enum FeatureStatus: int
|
||||
{
|
||||
Ko,
|
||||
Ok,
|
||||
ToDoInterface,
|
||||
ToDoImplementation,
|
||||
ToDoModel,
|
||||
ToDoSpecifications
|
||||
Requested,
|
||||
Accepted,
|
||||
Implemented
|
||||
}
|
||||
}
|
||||
|
|
@ -12,8 +12,6 @@ namespace Yavsc.Models.IT.Fixing
|
|||
Confirmed,
|
||||
Rejected,
|
||||
Feature,
|
||||
FeatureRequest,
|
||||
Fixed,
|
||||
Implemented
|
||||
Fixed
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue