Exemple #1
0
 public tbl_module getModuleByType(moduleType moduleType, int langId)
 {
     return db.tbl_module.Where(a => a.typeId == (int)moduleType && a.langId == langId).FirstOrDefault();
 }
Exemple #2
0
 public Module(moduleType type, int emplacementX, int emplacementY) //modif thomas
 {
     this.emplacementX = emplacementX;                              //modif thomas
     this.emplacementY = emplacementY;                              //modif thomas
     this.type         = type;
 }