コード例 #1
0
        public async Task <ActionResult> Index()
        {
            var order = Mapper.Map <IEnumerable <OrderServicesCarWashView> >(await _order.GetAll(1));

            return(View(order.OrderByDescending(x => x.Id)));
        }