Ejemplo n.º 1
0
 public void SaveConfigControlsEntity(ConfigControlsEntity entity)
 {
     if (db.Exists <ConfigControlsEntity>(entity.ID))
     {
         db.Update(entity);
     }
     else
     {
         db.Insert(entity);
     }
 }
Ejemplo n.º 2
0
 public static int RemoveFormControlsInfo(ConfigControlsEntity enti)
 {
     return(new BaseControlDal().Remove(enti));
 }
Ejemplo n.º 3
0
 public static void SaveFormControlsInfo(ConfigControlsEntity enti)
 {
     new BaseControlDal().SaveConfigControlsEntity(enti);
 }