public DashboardController(IAuthProvider authProvider, IUserFoodDAL dal, IWeightDAL weightDal, IUserDAL userDal)
 {
     this.authProvider = authProvider;
     this.dal          = dal;
     this.weightDal    = weightDal;
     this.userDal      = userDal;
 }
Exemple #2
0
 public ProfileController(IProfileDAL profileDAL, IUserDAL userDAL, IAuthProvider authProvider,
                          IGoalDAL goalDAL, IFoodDAL foodDAL, IProgressDAL progressDAL, IWeightDAL weightDAL)
 {
     this.profileDAL   = profileDAL;
     this.userDAL      = userDAL;
     this.authProvider = authProvider;
     this.goalDAL      = goalDAL;
     this.foodDAL      = foodDAL;
     this.progressDAL  = progressDAL;
     this.weightDAL    = weightDAL;
 }