Пример #1
0
        public async Task <bool> DeleteCustomerById(int id)
        {
            bool status = false;

            if (id > 0)
            {
                status = await _customerDAL.DeleteCustomerById(id);
            }

            return(status);
        }