Exemple #1
0
 public BugNotesController(BugNotesService bn)
 {
     _bn = bn;
 }
Exemple #2
0
 public BugNotesController(BugNotesService bns)
 {
     _bns = bns;
 }
Exemple #3
0
 public BugsController(BugsService bs, BugNotesService bns)
 {
     _bs  = bs;
     _bns = bns;
 }