2017-01-13 16:31:40 +01:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2017-03-03 17:36:29 +01:00
|
|
|
|
using System.Linq;
|
2017-01-13 16:31:40 +01:00
|
|
|
|
using Yavsc.Models.Workflow;
|
|
|
|
|
|
using YavscLib;
|
|
|
|
|
|
|
2017-02-12 22:20:57 +01:00
|
|
|
|
namespace Yavsc.Models.Musical.Profiles
|
2017-01-13 16:31:40 +01:00
|
|
|
|
{
|
|
|
|
|
|
public class Instrumentation : ISpecializationSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string UserId
|
|
|
|
|
|
{
|
|
|
|
|
|
get; set;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[ForeignKeyAttribute("UserId")]
|
|
|
|
|
|
public virtual PerformerProfile User { get; set; }
|
|
|
|
|
|
public long InstrumentId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[ForeignKeyAttribute("InstrumentId")]
|
|
|
|
|
|
public virtual Instrument Tool { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|