public ExercicioTreinoBase(int divisaoId, int divisaoSeq, int sequencia)
 {
     using (var db = new VitaClubContext())
     {
         exercicioTreinoDO = db.ExerciciosTreino.SingleOrDefault(a => a.DivisaoId == divisaoId && a.DivisaoSeq == divisaoSeq && a.Sequencia == sequencia);
     }
 }
Пример #2
0
 internal ExercicioTreino(ExercicioTreinoDO exercicioTreino) : base(exercicioTreino)
 {
 }
 internal ExercicioTreinoBase(ExercicioTreinoDO exercicioTreinoDO)
 {
     this.exercicioTreinoDO = exercicioTreinoDO;
 }
 public ExercicioTreinoBase()
 {
     exercicioTreinoDO = new ExercicioTreinoDO();
 }