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