Example #1
0
        public IList<Rol> Select(Rol data)
        {

                IList<Rol> datos = new List<Rol>();

                datos = GetHsql(data).List<Rol>();
                if (!Factory.IsTransactional)
                    Factory.Commit();
                return datos;

        }
Example #2
0
 public void DeleteRol(Rol data) { Factory.DaoRol().Delete(data); }
Example #3
0
 public void UpdateRol(Rol data) { Factory.DaoRol().Update(data); }
Example #4
0
 public Rol SaveRol(Rol data) { return Factory.DaoRol().Save(data); }
Example #5
0
 public IList<Rol> GetRol(Rol data) {
     Factory.IsTransactional = true;
     return Factory.DaoRol().Select(data); 
 }
Example #6
0
 public Rol SelectById(Rol data)
 {
     return (Rol)base.SelectById(data);
 }
Example #7
0
 public Boolean Delete(Rol data)
 {
     return base.Delete(data);
 }
Example #8
0
 public Boolean Update(Rol data)
 {
     return base.Update(data);
 }
Example #9
0
 public Rol Save(Rol data)
 {
     return (Rol)base.Save(data);
 }