Ejemplo n.º 1
0
        public void SeedRepo()
        {
            Customer jake = new Customer("Jake", "Smith", "*****@*****.**", 317 - 233 - 9845, CustomerType.potential);

            _customerRepo.AddCustomerToDirectory(jake);
            Customer james = new Customer("James", "Smith", "*****@*****.**", 317 - 234 - 9845, CustomerType.current);

            _customerRepo.AddCustomerToDirectory(james);
            Customer jane = new Customer("Jane", "Smith", "*****@*****.**", 317 - 235 - 9845, CustomerType.past);

            _customerRepo.AddCustomerToDirectory(jane);
        }