refactoring
parent
c333659891
commit
44c26d099a
@ -1,7 +1,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Yavsc.Models.Booking.Profiles
|
||||
namespace Yavsc.Models.Workflow.Profiles
|
||||
{
|
||||
using Models.Workflow;
|
||||
using YavscLib;
|
||||
@ -0,0 +1,9 @@
|
||||
namespace Yavsc.Models.haircut
|
||||
{
|
||||
public enum HairCutGenders : int
|
||||
{
|
||||
Kid = 1,
|
||||
Man,
|
||||
Women
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,31 @@
|
||||
namespace Yavsc.Models.Messaging
|
||||
{
|
||||
public class HairCutQueryEvent : BookQueryProviderInfo, IEvent
|
||||
{
|
||||
public HairCutQueryEvent()
|
||||
{
|
||||
Topic = "HairCutQuery";
|
||||
}
|
||||
|
||||
public string Message
|
||||
{
|
||||
get;
|
||||
|
||||
set;
|
||||
}
|
||||
|
||||
public string Sender
|
||||
{
|
||||
get;
|
||||
|
||||
set;
|
||||
}
|
||||
|
||||
public string Topic
|
||||
{
|
||||
get;
|
||||
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
namespace Yavsc.Models.haircut
|
||||
{
|
||||
public enum HairDressings {
|
||||
Brushing,
|
||||
Folding
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
namespace Yavsc.Models.haircut
|
||||
{
|
||||
public enum HairLength : int
|
||||
{
|
||||
Short = 1,
|
||||
HalfLong,
|
||||
Long
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
namespace Yavsc.Models.haircut
|
||||
{
|
||||
|
||||
public enum HairTechnos
|
||||
{
|
||||
Color,
|
||||
Permanent,
|
||||
Defris,
|
||||
Mech,
|
||||
Balayage,
|
||||
TyAndDie
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue