Exemplo n.º 1
0
        public Rings(int ringID)
            : base()
        {
            _ring = new Fpp.WebModules.Data.Rings(_moduleSettings);

            _id = ringID;
            LoadFromRow(_ring.getDetails(_id));
        }
Exemplo n.º 2
0
 public static DataSet GetClassesForRing(int RingID)
 {
     String moduleSettings = ModuleConfig.GetSettings();
     Data.Rings ring = new Data.Rings(moduleSettings);
     return ring.GetClassesForRing(RingID);
 }
Exemplo n.º 3
0
 public Rings(DataRow row)
     : base()
 {
     _ring = new Fpp.WebModules.Data.Rings(_moduleSettings);
     LoadFromRow(row);
 }
Exemplo n.º 4
0
 public Rings()
     : base()
 {
     _ring = new Fpp.WebModules.Data.Rings(_moduleSettings);
 }