Example #1
0
        public bool CancelSale(UInt64 id)
        {
            var saleService = new API.Services.SaleService();

            return saleService.CancelSale(id);
        }
Example #2
0
        public bool CancelSale(int id, string cardBarcode, string phone)
        {
            var saleService = new API.Services.SaleService();

            return saleService.CancelSale(id, cardBarcode, phone);
        }