Esempio n. 1
0
 public BoardsController(BoardService boardService, LaneService laneService, CardService cardService, UserService userService, IHubContext <BroadcastHub> hubContext, IHttpContextAccessor httpContextAccessor)
 {
     this.boardService        = boardService;
     this.laneService         = laneService;
     this.cardService         = cardService;
     this.userService         = userService;
     this.hubContext          = hubContext;
     this.httpContextAccessor = httpContextAccessor;
 }
Esempio n. 2
0
 public LaneService Update(LaneService newlane)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public LaneService Add(LaneService newlane)
 {
     return(newlane);
 }