public UserController(Entities.Db db, AppSetting appSetting) { _userModel = new UserModel(db, appSetting); }
public StackController(Entities.Db db) { _stackModel = new StackModel(db); _logModel = new LogModel(db); }
public TaskController(Entities.Db db) { _taskModel = new TaskModel(db); _logModel = new LogModel(db); }