Esempio n. 1
0
 public AdminController(IAdminRepository AdminRepo, ITrashRepository TrashRepo)
 {
     AdminRepository = AdminRepo;
     TrashRepository = TrashRepo;
 }
Esempio n. 2
0
 public TrashController(ITrashRepository repository)
 {
     this.repository = repository;
 }
 public TrashController(ITrashRepository repository)
 {
     this.repository = repository;
 }
 public TrashController(ITrashRepository TrashRepo)
 {
     TrashRepository = TrashRepo;
 }