Example #1
0
 public PastesController(IPastehubRepository repo)
 {
     _repo = repo;
 }
Example #2
0
 public PasteController(IPastehubRepository repo)
 {
     _repo    = repo;
     _factory = new TheModelFactory(repo);
 }
Example #3
0
 public TheModelFactory(IPastehubRepository repo)
 {
     _repo = repo;
 }