Example #1
0
        public BLPlanned()
        {
            db = DataLinkLayer.DBconnect();

            bLExercise = new BLExercise();
            bLRoutine  = new BLRoutine();

            exercises = bLExercise.ReadExercise();
            routines  = bLRoutine.ReadRoutine();
            //Planned rpd = new Planned();
            //  Int32 d = InsertRoutinePlanned(rpd);
        }
Example #2
0
        public BLExecuted()
        {
            db = DataLinkLayer.DBconnect();
            //db.CreateTable<Executed>();



            exerciseList = bLExercise.ReadExercise();
            routineList  = bLRoutine.ReadRoutine();
            planneds     = bLPlanned.ReadRoutinePlanned();


            //Planned rpd = new Planned();
            //  Int32 d = InsertRoutinePlanned(rpd);
        }