// GET: /Order/
        public ActionResult Index()
        {
            var Boms = _BomDetailService.GetDesignConsumptionHeaderViewModelForIndex();

            return(View(Boms));
        }