public PlaygroundDao(MagmaDawDbContext magmaDbContext)
 {
     this.magmaDbContext = magmaDbContext;
     responseFactory     = new ResponseFactory();
     response            = new Response();
     projectDao          = new ProjectDao(magmaDbContext);
     trackDao            = new TrackDao(magmaDbContext);
     rackDao             = new RackDao(magmaDbContext);
     pluginDao           = new PluginDao(magmaDbContext);
     samplerDao          = new SamplerDao(magmaDbContext);
     synthesizerDao      = new SynthesizerDao(magmaDbContext);
     audioEffectDao      = new AudioEffectDao(magmaDbContext);
 }
 public ProjectService(MagmaDawDbContext magmaDbContext)
 {
     projectDao      = new ProjectDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public UserController(MagmaDawDbContext magmaDbContext)
 {
     userService     = new UserService(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public ProjectController(MagmaDawDbContext magmaDbContext)
 {
     projectService  = new ProjectService(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public PlaygroundController(MagmaDawDbContext magmaDbContext)
 {
     playgroundService = new PlaygroundService(magmaDbContext);
     responseFactory   = new ResponseFactory();
 }
 public HomeService(MagmaDawDbContext magmaDbContext)
 {
     responseFactory = new ResponseFactory();
     userDao         = new UserDao(magmaDbContext);
 }
Esempio n. 7
0
 public AudioEffectDao(MagmaDawDbContext magmaDbContext)
 {
     this.magmaDbContext = magmaDbContext;
     responseFactory     = new ResponseFactory();
     response            = new Response();
 }
 public PluginService(MagmaDawDbContext magmaDbContext)
 {
     pluginDao       = new PluginDao(magmaDbContext);
     responseFactory = new ResponseFactory();
     response        = new Response();
 }
Esempio n. 9
0
 public SynthesizerController(MagmaDawDbContext magmaDbContext)
 {
     synthesizerService = new SynthesizerService(magmaDbContext);
     responseFactory    = new ResponseFactory();
 }
Esempio n. 10
0
 public SynthesizerDao(MagmaDawDbContext magmaDbContext)
 {
     this.magmaDbContext = magmaDbContext;
     responseFactory     = new ResponseFactory();
     response            = new Response();
 }
Esempio n. 11
0
 public PlaygroundService(MagmaDawDbContext magmaDbContext)
 {
     playgroundDao   = new PlaygroundDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public SamplerController(MagmaDawDbContext magmaDbContext)
 {
     samplerService  = new SamplerService(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
Esempio n. 13
0
 public TrackController(MagmaDawDbContext magmaDbContext)
 {
     trackService    = new TrackService(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
Esempio n. 14
0
 public PluginController(MagmaDawDbContext magmaDbContext)
 {
     pluginService   = new PluginService(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public SamplerService(MagmaDawDbContext magmaDbContext)
 {
     samplerDao      = new SamplerDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public HomeController(MagmaDawDbContext magmaDbContext)
 {
     homeService     = new HomeService(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
Esempio n. 17
0
 public RackService(MagmaDawDbContext magmaDbContext)
 {
     rackDao         = new RackDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
Esempio n. 18
0
 public SynthesizerService(MagmaDawDbContext magmaDbContext)
 {
     synthesizerDao  = new SynthesizerDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public UserService(MagmaDawDbContext magmaDbContext)
 {
     userDao         = new UserDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
 public AudioEffectController(MagmaDawDbContext magmaDbContext)
 {
     audioEffectService = new AudioEffectService(magmaDbContext);
     responseFactory    = new ResponseFactory();
 }
Esempio n. 21
0
 public AudioEffectService(MagmaDawDbContext magmaDbContext)
 {
     audioEffectDao  = new AudioEffectDao(magmaDbContext);
     responseFactory = new ResponseFactory();
 }
Esempio n. 22
0
 public TrackDao(MagmaDawDbContext magmaDbContext)
 {
     this.magmaDbContext = magmaDbContext;
     responseFactory     = new ResponseFactory();
     response            = new Response();
 }
 public ProjectDao(MagmaDawDbContext magmaDbContext)
 {
     this.magmaDbContext  = magmaDbContext;
     this.responseFactory = new ResponseFactory();
     response             = new Response();
 }