refactoring: --YavscLib-- => Yavsc

This commit is contained in:
Paul Schneider 2017-05-27 16:22:58 +02:00
commit 776b7dae21
102 changed files with 216 additions and 209 deletions

View file

@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using YavscLib;
using Yavsc;
namespace Yavsc.Models.Musical.Profiles
{
@ -18,4 +18,4 @@ namespace Yavsc.Models.Musical.Profiles
}
}
}
}

View file

@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using YavscLib;
using Yavsc;
namespace Yavsc.Models.Musical.Profiles
{
@ -13,4 +13,4 @@ namespace Yavsc.Models.Musical.Profiles
get; set;
}
}
}
}

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
using YavscLib;
using Yavsc;
namespace Yavsc.Models.Musical.Profiles
{
@ -10,7 +10,7 @@ namespace Yavsc.Models.Musical.Profiles
{
get; set;
}
[ForeignKeyAttribute("UserId")]
public virtual PerformerProfile User { get; set; }
public long InstrumentId { get; set; }
@ -18,4 +18,4 @@ namespace Yavsc.Models.Musical.Profiles
[ForeignKeyAttribute("InstrumentId")]
public virtual Instrument Tool { get; set; }
}
}
}