Ejemplo n.º 1
0
 public int Add_SSurvey(V_Satisfaction v)
 {
     using (SatisfactionBll satBll = new SatisfactionBll())
     {
         return satBll.Add_SSurvey(v);
     }
 }
Ejemplo n.º 2
0
 public int Upd_SSurvey(V_Satisfaction infoView)
 {
     using (SatisfactionBll satBll = new SatisfactionBll())
     {
         if (satBll.Upd_SSurvey(infoView) == 1)
         {
             return 1;
         }
         return -1;
     }
 }
Ejemplo n.º 3
0
 public int Upd_SSurveyChecked(V_Satisfaction infoView)
 {
     using (SatisfactionBll satBll = new SatisfactionBll())
     {
         return satBll.Upd_SSurveyChecked(infoView);
     }
 }