예제 #1
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     us = new UserService();
     uc = new BusinessLayer.UserController();
     bc = uc.getBoardController();
     bs = new BoardService(bc);
     LoadData();
 }
예제 #2
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     this.uService = new UserService();
     this.bService = new BoardService(uService);
 }
예제 #3
0
파일: Service.cs 프로젝트: roflmoqkz/Kanban
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     us = new UserService();
     bs = new BoardService();
 }
예제 #4
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     userService  = new UserService();
     boardService = new BoardService();
 }