Ejemplo n.º 1
0
 public BugNotesController(BugNotesService bn)
 {
     _bn = bn;
 }
Ejemplo n.º 2
0
 public BugNotesController(BugNotesService bns)
 {
     _bns = bns;
 }
Ejemplo n.º 3
0
 public BugsController(BugsService bs, BugNotesService bns)
 {
     _bs  = bs;
     _bns = bns;
 }