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; }
public LaneService Update(LaneService newlane) { throw new NotImplementedException(); }
public LaneService Add(LaneService newlane) { return(newlane); }