public ActionResult <jsonPhoto> CreateOnePhoto([FromBody] jsonPhoto photo)
 {
     _photoService.CreateOne(photo);
     return(photo);
 }