Exemplo n.º 1
0
 public HomeController(IUserBL userBL, IWorkBL workBL, IGenreBL genreBL, IRatingBL ratingBL, ICommentBL commentBL)
 {
     this._userBL    = userBL;
     this._workBL    = workBL;
     this._genreBL   = genreBL;
     this._ratingBL  = ratingBL;
     this._commentBL = commentBL;
 }
 public CompositionController(IUserBL userBL, IWorkBL workBL, IGenreBL genreBL, IRatingBL ratingBL, ICommentBL commentBL)
 {
     this.userBL    = userBL;
     this.workBL    = workBL;
     this.genreBL   = genreBL;
     this.ratingBL  = ratingBL;
     this.commentBL = commentBL;
 }