public void Should_Success_Validate_Data()
        {
            GarmentSupplierBalanceDebtViewModel nullViewModel = new GarmentSupplierBalanceDebtViewModel
            {
                dOCurrencyRate = 0,
            };

            Assert.True(nullViewModel.Validate(null).Count() > 0);

            GarmentSupplierBalanceDebtViewModel viewModel = new GarmentSupplierBalanceDebtViewModel
            {
                supplier = new SupplierViewModel
                {
                    Id     = 1,
                    Code   = "test",
                    Import = true,
                    Name   = "test"
                },

                items = new List <GarmentSupplierBalanceDebtItemViewModel> {
                }
            };

            Assert.True(viewModel.Validate(null).Count() > 0);
        }