public static Usuario UsuarioChangeStatus(int id_usuario, bool status) { Usuario oU = new Usuario(); try { oU.Id = id_usuario; UsuarioMng oBMng = new UsuarioMng(); oBMng.O_Usuario = oU; oBMng.selById(); if (status) { oBMng.dlt(); } else { oBMng.reactive(); } } catch { throw; } return(oU); }
public static Usuario UsuarioSelById(int id_usuario) { Usuario o = new Usuario(); try { o.Id = id_usuario; UsuarioMng oUMng = new UsuarioMng() { O_Usuario = o }; oUMng.selById(); } catch { throw; } return(o); }