public ReportController(IHostingEnvironment hostingEnvironment, IBoardServices board, ITodoServices todo, IItemServices item, IMemosServices memo)
 {
     this.hostingEnvironment = hostingEnvironment;
     this.board = board;
     this.todo  = todo;
     this.item  = item;
     this.memo  = memo;
 }
 public BoardController(IBoardServices ser)
 {
     this.ser = ser;
 }
 public BoardsController(IBoardServices service)
 {
     _service = service;
 }
Exemple #4
0
 public BoardsController(IBoardServices boardServices, ITagServices tagServices)
 {
     _boardServices = boardServices;
     _tagServices   = tagServices;
 }
Exemple #5
0
 public TeamsController(ITeamServices teamServices, IBoardServices boardServices)
 {
     _teamServices  = teamServices;
     _boardServices = boardServices;
 }