export de la commande coiffure
This commit is contained in:
parent
5401959bd0
commit
c51f9f36cc
7 changed files with 55 additions and 18 deletions
10
YavscLib/HairCut/IHairCutQuery.cs
Normal file
10
YavscLib/HairCut/IHairCutQuery.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace YavscLib.HairCut
|
||||
{
|
||||
public interface IHairCutQuery
|
||||
{
|
||||
long Id { get; set; }
|
||||
long PrestationId { get; set; }
|
||||
|
||||
long LocationId { get; set; }
|
||||
}
|
||||
}
|
||||
9
YavscLib/HairCut/IPrestation.cs
Normal file
9
YavscLib/HairCut/IPrestation.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
namespace YavscLib.HairCut
|
||||
{
|
||||
public interface IPrestation
|
||||
{
|
||||
long Id { get; set; }
|
||||
int Length { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -110,6 +110,8 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="project.json" />
|
||||
<Content Include="HairCut\IHairCutQuery.cs" />
|
||||
<Content Include="HairCut\IPrestation.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue