コード例 #1
0
        public bool DeleteSalesLot(int id)
        {
            bool           status = false;
            SaleRepository repo   = new SaleRepository();

            status = repo.DeleteSalesLot(id);
            return(status);
        }