public void CanDeleteAsync()
        {
            Assert.DoesNotThrowAsync(async() =>
            {
                IDataOperations testOperations = CreateOperationsInterface();

                Task task = testOperations.DeleteAsync(id: 35);
                Assert.IsNotNull(task, "The Task returned must not be null");

                await task;
            },
                                     "The async delete operation must be successful");
        }