hair cut command

This commit is contained in:
2017-03-01 10:11:20 +01:00
parent 937d4ed7bf
commit 335da97a4f
18 changed files with 2135 additions and 123 deletions

View File

@ -7,6 +7,10 @@ namespace Yavsc.Models.Haircut
{
public class HairPrestation
{
// Homme ou enfant => Coupe seule
// Couleur => Shampoing
// Forfaits : Coupe - Technique
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }

View File

@ -10,7 +10,7 @@ namespace Yavsc.Models.Workflow
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
public string Action { get; set; }
public string ActionName { get; set; }
public string Title { get; set; }