示例#1
0
文件: Juego.cs 项目: aiyoju/gamecher
 public Juego(Plataforma plataforma, string nombre, string appid, string imageUrl, string descripcion, string genero,
              string companyia, string pathConfiguracion, sbyte?trofeos, DateTimeOffset fechaLanzamiento, double?puntuacion,
              DateTimeOffset fechaModificado)
 {
     this.plataforma        = plataforma;
     this.nombre            = nombre;
     this.appid             = appid;
     this.imageUrl          = imageUrl;
     this.descripcion       = descripcion;
     this.genero            = genero;
     this.companyia         = companyia;
     this.pathConfiguracion = pathConfiguracion;
     this.trofeos           = trofeos;
     this.fechaLanzamiento  = fechaLanzamiento;
     this.puntuacion        = puntuacion;
     this.fechaModificado   = fechaModificado;
 }
示例#2
0
文件: Juego.cs 项目: aiyoju/gamecher
 public Juego(Plataforma plataforma, DateTimeOffset fechaModificado)
 {
     this.plataforma      = plataforma;
     this.fechaModificado = fechaModificado;
 }