Ejemplo n.º 1
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     us = new UserService();
     uc = new BusinessLayer.UserController();
     bc = uc.getBoardController();
     bs = new BoardService(bc);
     LoadData();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     this.uService = new UserService();
     this.bService = new BoardService(uService);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     us = new UserService();
     bs = new BoardService();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Simple public constructor.
 /// </summary>
 public Service()
 {
     userService  = new UserService();
     boardService = new BoardService();
 }