public clsUsuario(int _id, string _nombre, string _clave, string _tipoUsuario, clsEmpresa _objEmpresa, bool _inhabilitado) { this.id = _id; this.nombre = _nombre; this.clave = _clave; this.tipoUsuario = _tipoUsuario; this.objEmpresa = _objEmpresa; this.inhabilitado = _inhabilitado; }
public clsRecurso(int _id, clsEmpresa _objEmpresa, string _tipo, string _descripcion, int _stock, bool _inhabilitado) { this.id = _id; this.objEmpresa = _objEmpresa; this.tipo = _tipo; this.descripcion = _descripcion; this.stock = _stock; this.inhabilitado = _inhabilitado; }