Esempio n. 1
0
        // add package Microsoft.Extensions.Options

        //public FakeCustomersService(CustomerFaker customerFaker, IOptions<CustomerOptions> options)
        //{
        //    this.customerFaker = customerFaker;

        //    customers = customerFaker.Generate(options.Value.Qty);
        //}

        public FakeCustomersService(CustomerFaker customerFaker, CustomerOptions options)
        {
            this.customerFaker = customerFaker;

            customers = customerFaker.Generate(options.Qty);
        }