private async void CategoryOfPersonECL_TestNewCategoryOfPersonECL()
        {
            var categoryOfPersonEdit = await CategoryOfPersonECL.NewCategoryOfPersonECL();

            Assert.NotNull(categoryOfPersonEdit);
            Assert.IsType <CategoryOfPersonECL>(categoryOfPersonEdit);
        }
        private async void CategoryOfPersonECL_TestGetCategoryOfPersonECL()
        {
            var childData            = BuildCategoryOfPersonList();
            var categoryOfPersonEdit = await CategoryOfPersonECL.GetCategoryOfPersonECL(childData);

            Assert.NotNull(categoryOfPersonEdit);
            Assert.Equal(3, categoryOfPersonEdit.Count);
        }