public MoonController(IMoonRepository moonRepository, IProfileRepository detailedProfileRepository)
 {
     this.moonRepository            = moonRepository;
     this.detailedProfileRepository = detailedProfileRepository;
 }
 public MoonService(IMoonRepository moon)
 {
     this.moonRepository = moon;
 }