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; }
}
}

View file

@ -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">