Пример #1
0
 public HomeController(IPlayGroundRepository playGroundRepository)
 {
     _playGroundRepository = playGroundRepository;
 }
Пример #2
0
 public PlayGroundsController(ICategoryRepository categoryRepository, IPlayGroundRepository playGroundRepository)
 {
     _categoryRepository   = categoryRepository;
     _playGroundRepository = playGroundRepository;
 }