public decimal Save(int id, string name, string description) { Rol currentUser = rolBo.Get(id); Entity.Rol rol = new Entity.Rol(); rol.Id = id; rol.Name = name; rol.Description = description; return rolBo.Save(rol); }
public int Save(Rol rol) { if (Get(rol.Id) == null) { //Create rol return Insert(rol); } else { //Update rol return Update(rol); } }
public bool Delete(int id) { Rol rol = new Rol(); rol.Id = id; rolDao.Delete(rol); rol = Get(rol.Id); if (rol == null) return true; return false; }
private int Update(Rol rol) { return rolDao.Update(rol); }
private int Insert(Rol rol) { return rolDao.Insert(rol); }
public List<Rol> List() { Rol rol = new Rol(); rol.Name = string.Empty; return rolDao.List(rol); }
public List<Rol> List(string name) { Rol rol = new Rol(); rol.Name = name; return rolDao.List(rol); }
public int Update(Rol rol) { return ExecuteScalar("RolUpdate", rol); }
public List<Rol> List(Rol rol) { return Execute<Rol>("RolList", rol); }
public int Insert(Rol rol) { return ExecuteScalar("RolInsert", rol); }
public Rol Get(int id) { Rol rol = new Rol(); rol.Id = id; return Get<Rol>("RolGet", rol); }
public void Delete(Rol rol) { Execute<Rol>("RolDelete", rol); }