profiles dj, musicien, formation

This commit is contained in:
Paul Schneider 2017-01-06 14:02:17 +01:00
commit e143052211
35 changed files with 5364 additions and 18 deletions

View file

@ -1,10 +1,15 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking {
public class MusicalPreference : MusicalTendency {
public long OwnerId { get; set; }
public string OwnerProfileId { get; set; }
[ForeignKey("OwnerProfileId")]
public virtual PerformerProfile OwnerProfile { get; set; }
public int Rate { get; set; }
}