Beispiel #1
0
        public IList<ConfigType> Select(ConfigType data)
        {

                IList<ConfigType> datos = new List<ConfigType>();
                datos = GetHsql(data).List<ConfigType>();
                if (!Factory.IsTransactional)
                    Factory.Commit();
                return datos;
            
        }
Beispiel #2
0
 public void DeleteConfigType(ConfigType data) { Factory.DaoConfigType().Delete(data); }
Beispiel #3
0
 public void UpdateConfigType(ConfigType data) { Factory.DaoConfigType().Update(data); }
Beispiel #4
0
 public ConfigType SaveConfigType(ConfigType data) { return Factory.DaoConfigType().Save(data); }
Beispiel #5
0
 public IList<ConfigType> GetConfigType(ConfigType data) { return Factory.DaoConfigType().Select(data); }
Beispiel #6
0
 public ConfigType SelectById(ConfigType data)
 {
     return (ConfigType)base.SelectById(data);
 }
Beispiel #7
0
 public Boolean Delete(ConfigType data)
 {
     return base.Delete(data);
 }
Beispiel #8
0
 public Boolean Update(ConfigType data)
 {
     return base.Update(data);
 }
Beispiel #9
0
 public ConfigType Save(ConfigType data)
 {
     return (ConfigType)base.Save(data);
 }