Exemplo n.º 1
0
 public Choice GetByID(int id)
 {
     return(_choiceDAL.Get(a => a.ChoiceID == id && a.IsActive));
 }
Exemplo n.º 2
0
 public Model.Choice GetByID(int id)
 {
     return(_choiceDAL.Get(a => a.ChoiceID == id));
 }