Пример #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
 public BoardService(BusinessLayer.BoardController bc)
 {
     this.bc = bc;
 }