public ActionResult UpdateOrder(int id)
        {
            var order = HTTPHelpers.GetMethod <OrdersModel>("http://localhost:37776/", "Orders/GetOrder", RestSharp.Method.GET, id);

            return(View(order));
        }
        public ActionResult UpdateCustomer(string id)
        {
            var customer = HTTPHelpers.GetMethod <CustomersModel>("http://localhost:37776/", "Customers/GetCustomerDetail", RestSharp.Method.GET, id);

            return(View(customer));
        }