예제 #1
0
 public UserController(Entities.Db db, AppSetting appSetting)
 {
     _userModel = new UserModel(db, appSetting);
 }
예제 #2
0
 public StackController(Entities.Db db)
 {
     _stackModel = new StackModel(db);
     _logModel   = new LogModel(db);
 }
예제 #3
0
 public TaskController(Entities.Db db)
 {
     _taskModel = new TaskModel(db);
     _logModel  = new LogModel(db);
 }