Ejemplo n.º 1
0
 public GamesController(IGameAppService gameAppService, IUserAppService userAppService, IBorrowAppService borrowAppService)
 {
     _gameAppRepository   = gameAppService;
     _userAppRepository   = userAppService;
     _borrowAppRepository = borrowAppService;
     _context             = new SessionContext();
 }
Ejemplo n.º 2
0
 public UsersController(IUserAppService userAppService, IGameAppService gameAppService, IBorrowAppService borrowAppService)
 {
     _userRepository      = userAppService;
     _gameAppRepository   = gameAppService;
     _borrowAppRepository = borrowAppService;
 }