public bool DeleteSalesLot(int id) { bool status = false; SaleRepository repo = new SaleRepository(); status = repo.DeleteSalesLot(id); return(status); }