export de la commande coiffure

This commit is contained in:
Paul Schneider 2017-03-23 00:44:27 +01:00
commit c51f9f36cc
7 changed files with 55 additions and 18 deletions

View file

@ -0,0 +1,10 @@
namespace YavscLib.HairCut
{
public interface IHairCutQuery
{
long Id { get; set; }
long PrestationId { get; set; }
long LocationId { get; set; }
}
}

View file

@ -0,0 +1,9 @@
namespace YavscLib.HairCut
{
public interface IPrestation
{
long Id { get; set; }
int Length { get; set; }
}
}