Exemple #1
0
 public GroupController(IGroupBiz gBiz, IUserBiz uBiz)
 {
     this.gBiz = gBiz;
     this.uBiz = uBiz;
 }
Exemple #2
0
 public GroupController()
 {
     this.gBiz = new GroupBiz(new DataBoxes());
     this.uBiz = new UserBiz(new DataBoxes());
 }