예제 #1
0
        public async Task <IActionResult> DeleteCity(int id)
        {
            var cityToDelete = await _context.City.FirstOrDefaultAsync(c => c.Cityid == id);

            if (cityToDelete != null)
            {
                _context.Remove(cityToDelete);
                return(Ok(await _context.SaveChangesAsync()));
            }
            else
            {
                return(BadRequest());
            }
        }
예제 #2
0
        public async Task <IActionResult> DeleteCustomer(int id)
        {
            var customerToDelete = await _context.Customer.FirstOrDefaultAsync(c => c.Customerid == id);

            if (customerToDelete != null)
            {
                _context.Remove(customerToDelete);
                await TimeStampTransaction();

                return(Ok(await _context.SaveChangesAsync()));
            }

            await TimeStampError();

            return(BadRequest());
        }