Example #1
0
        public ActionResult UnCompleteOrder(int orderId)
        {
            CakesPosRepository cpr = new CakesPosRepository(_connectionString);

            cpr.UnCompleteOrder(orderId);
            return(null);
        }