yavsc/Yavsc/Models/Haircut/HairCutQuery.cs

24 lines
571 B
C#

8 years ago
using System;
8 years ago
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Billing;
8 years ago
using Yavsc.Models.Relationship;
8 years ago
namespace Yavsc.Models.Haircut
{
public class HairCutQuery : NominativeServiceCommand
{
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
8 years ago
HairPrestation Prestation { get; set; }
public Location Location { get; set; }
public DateTime EventDate
{
get;
set;
}
8 years ago
}
}