public void AddCommentsModel(ImageCommentsModel comments)
 {
     this.CommentsModel = comments;
 }
 public PhotoPageModel(Dictionary <string, string> Photos, ImageCommentsModel comments)
 {
     this.counter  = Photos.Count;
     this.Photos   = Photos;
     CommentsModel = comments;
 }