formulaire de commande coiffure

This commit is contained in:
Paul Schneider 2017-03-02 11:35:38 +01:00
commit e338d07fd4
18 changed files with 6302 additions and 64 deletions

View file

@ -4,9 +4,10 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace Yavsc.Models.Workflow
{
using System;
using Models.Relationship;
using YavscLib.Workflow;
public class PerformerProfile : IPerformerProfile {
[Key]
@ -41,10 +42,12 @@ namespace Yavsc.Models.Workflow
[Display(Name="Active")]
public bool Active { get; set; }
[Obsolete("Implement and use a new specialization setting")]
[Display(Name="Maximal Daily Cost (euro/day)"),DisplayFormat(DataFormatString="{0:C}")]
public int? MaxDailyCost { get; set; }
[Obsolete("Implement and use a new specialization setting")]
[Display(Name="Minimal Daily Cost (euro/day)"),DisplayFormat(DataFormatString="{0:C}")]
public int? MinDailyCost { get; set; }