Example #1
0
        static void Main()
        {
            var examples = new IServiceExample[]
            {
                new CustomersServiceExample(),
                new InvoiceServiceExample(),
                new SubscriptionServiceExample()
            }.ToList();

            examples.ForEach(e => e.Run());
        }
Example #2
0
        static void Main()
        {
            var examples = new IServiceExample[]
            {
                new CustomersServiceExample(),
                new InvoiceServiceExample(),
                new SubscriptionServiceExample(),
                new TransactionsServiceExample(),
                new CreditCardServiceExample(),
                new ACHeCheckAccountsServiceExample()
            }.ToList();

            examples.ForEach(e => e.Run());
        }