refactoring

This commit is contained in:
Paul Schneider 2017-02-12 22:20:57 +01:00
commit 16df0a199a
26 changed files with 62 additions and 37 deletions

View file

@ -17,7 +17,7 @@ namespace Yavsc.Models
using YavscLib;
using Auth;
using Billing;
using Booking;
using Musical;
using OAuth;
using Workflow;
using Identity;
@ -25,7 +25,7 @@ namespace Yavsc.Models
using Chat;
using Messaging;
using Access;
using Booking.Profiles;
using Musical.Profiles;
using Workflow.Profiles;
using Drawing;
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>

View file

@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Yavsc.Models.Booking
namespace Yavsc.Models.Musical
{
public class Instrument
{

View file

@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking
namespace Yavsc.Models.Musical
{
public class InstrumentRating
{

View file

@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Booking
namespace Yavsc.Models.Musical
{
public class MusicalPreference {

View file

@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Yavsc.Models.Booking {
namespace Yavsc.Models.Musical {

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking
namespace Yavsc.Models.Musical
{
public class DjPerformerProfile : SpecializationSettings
{

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using YavscLib;
namespace Yavsc.Models.Booking.Profiles
namespace Yavsc.Models.Musical.Profiles
{
public class DjSettings : ISpecializationSettings
{

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking.Profiles
namespace Yavsc.Models.Musical.Profiles
{
public class FormationPerformerProfile
{

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using YavscLib;
namespace Yavsc.Models.Booking.Profiles
namespace Yavsc.Models.Musical.Profiles
{
public class GeneralSettings : ISpecializationSettings
{

View file

@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
using YavscLib;
namespace Yavsc.Models.Booking.Profiles
namespace Yavsc.Models.Musical.Profiles
{
public class Instrumentation : ISpecializationSettings
{

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking
namespace Yavsc.Models.Musical
{
public class MusicianPerformerProfile : PerformerProfile
{

View file

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking.Profiles
namespace Yavsc.Models.Musical.Profiles
{
public class StarPerformerProfile : PerformerProfile
{