public IHttpActionResult Delete(usuarios_modelo usuario)
        {
            string error = string.Empty;

            try
            {
                usuario_bll usuario_bll     = new usuario_bll();
                var         usuarioEliminar = usuario_bll.EliminarUsuario(ref error, usuario);
                if (!string.IsNullOrEmpty(error))
                {
                    throw new Exception(error);
                }

                return(Ok(usuarioEliminar));
            }
            catch (Exception e)
            {
                error = e.Message;
                return(BadRequest(error));
            }
        }
        public IHttpActionResult Get()
        {
            string error = string.Empty;

            try
            {
                usuario_bll usuario_bll = new usuario_bll();
                var         usuarios    = usuario_bll.ObtenerUsuarios(ref error);
                if (!string.IsNullOrEmpty(error))
                {
                    throw new Exception(error);
                }

                return(Ok(usuarios));
            }
            catch (Exception e)
            {
                error = e.Message;
                return(BadRequest(error));
            }
        }