public UnoTestDbSeeder(
     UnoTestDbContext ctx,
     IHostingEnvironment hosting)
 {
     this.ctx     = ctx;
     this.hosting = hosting;
 }
 public CustomerController(
     UnoTestDbContext context)
 {
     this.context       = context;
     PersistenceManager = new UnoTestPersistenceManager(context);
 }