public MarbleService(MarbleRepository repository)
 {
     this.repository = repository;
 }
 public MarbleService()
 {
     this.repository = new MarbleRepository();
 }