Example #1
0
        /// <summary>
        /// Deletes the bill that match with the id
        /// </summary>
        /// <param name="Id">Bill id to be deleted</param>
        public void Delete(int Id)
        {
            var billDAC = new BillDAC();

            billDAC.Delete(Id);
        }