예제 #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;
 }