// GET: OrderController
 public ActionResult Index()
 {
     return(View(_strBL.AllOrders().Select(order => _mapper.ParseOrders(order)).ToList()));
 }