示例#1
0
 static VirtualDB()
 {
     Studenti        = new FTable <Student>();
     AkademskeGodine = new FTable <AkademskaGodina>();
     Smjerovi        = new FTable <Smjer>();
     UpisiGodine     = new FTable <UpisGodine>();
     Fakulteti       = new FTable <Fakultet>();
 }
            /// <summary>
            /// Конструктор - основной (без параметров)
            /// </summary>
            public TaskBalTeploCalculate()
                : base()
            {
                m_indxCompRealTime = INDX_COMP.UNKNOWN;

                In   = new P_ALG();
                Norm = new P_ALG();
                Out  = new P_ALG();

                fTable = new FTable();
            }
示例#3
0
 public static void DeleteFTable(FTable t)
 {
     DaoFactory.GetDaoFactory().CreateFTableDao().Delete(t);
 }
示例#4
0
 public static void SaveOrUpdateFTable(FTable ft)
 {
     DaoFactory.GetDaoFactory().CreateFTableDao().SaveOrUpdate(ft);
 }
示例#5
0
 public ChartSummary(DataSet ds, FTable ft)
 {
     _DSforcast = ds;
     _fTable    = ft;
     InitializeComponent();
 }