|
|
|
@ -18,42 +18,14 @@ namespace WF_WebAdmin.Converter
|
|
|
|
|
public QuoteDTO(int id_quote, string content, int likes, string langue, bool isValide, string? reason, int id_caracter, int id_source, int? id_user_verif)
|
|
|
|
|
{
|
|
|
|
|
this.Id = id_quote;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getId_quote()
|
|
|
|
|
{
|
|
|
|
|
return id_quote;
|
|
|
|
|
}
|
|
|
|
|
public string getContent() {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
|
|
|
|
public int getLikes()
|
|
|
|
|
{
|
|
|
|
|
return likes;
|
|
|
|
|
}
|
|
|
|
|
public string getLangue()
|
|
|
|
|
{
|
|
|
|
|
return langue;
|
|
|
|
|
}
|
|
|
|
|
public bool getIsValide()
|
|
|
|
|
{
|
|
|
|
|
return isValide;
|
|
|
|
|
}
|
|
|
|
|
public string? getReason()
|
|
|
|
|
{
|
|
|
|
|
return reason;
|
|
|
|
|
}
|
|
|
|
|
public int getIdCaracter()
|
|
|
|
|
{
|
|
|
|
|
return id_caracter;
|
|
|
|
|
}
|
|
|
|
|
public int getIdSource()
|
|
|
|
|
{
|
|
|
|
|
return id_source;
|
|
|
|
|
}
|
|
|
|
|
public int? getIdUserVerif()
|
|
|
|
|
{
|
|
|
|
|
return id_user_verif;
|
|
|
|
|
this.Content = content;
|
|
|
|
|
this.Likes = likes;
|
|
|
|
|
this.Langue = langue;
|
|
|
|
|
this.IsValide = isValide;
|
|
|
|
|
this.Reason = reason;
|
|
|
|
|
this.IdCaracter = id_caracter;
|
|
|
|
|
this.IdSource = id_source;
|
|
|
|
|
this.IdUserVerif = id_user_verif;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|