Exemple #1
0
 public Post(string nameSong, string contentPost, Manager ownPost, Image image, Genre genre,
             Singer singer)
 {
     this.datePost    = DateTime.Now;
     this.nameSong    = nameSong;
     this.contentPost = contentPost;
     this.ownPost     = ownPost;
     this.image       = image;
     this.genre       = genre;
     this.singer      = singer;
 }
Exemple #2
0
 public Audio(string nameSong, string contentPost, Manager ownPost, Image image, Genre genre,
              Singer singer) : base(nameSong, contentPost, ownPost, image, genre, singer)
 {
 }