// mock constructor
 public BikesController(IBikesMock mock)
 {
     this.db = mock;
 }
 // default constructor, use the live db
 public BikesController()
 {
     this.db = new EFBikes();
 }