/// <summary> /// Method called by Controller to return a specific order by its Id /// </summary> /// <param name="id"></param> /// <returns></returns> public static OrderViewModel GetOrderById(int id) { OrderObj order = OrderAccess.GetOrderById(id); return(GetOrder(order)); }