public CustomerRepository(NorthwindEntities db)
 {
     this.db = db;
 }
 public CustomerRepository()
 {
     this.db = new NorthwindEntities();
 }