Пример #1
0
        public bool DeleteClient(int id)
        {
            bool deleteDone = DataAccessor.DeleteClient(id);

            if (deleteDone)
            {
                refreshClientsList();
            }
            return(deleteDone);
        }