프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

hytos / DTI_PID / APIDConverter / AvevaInfo.cs @ dfb760ef

이력 | 보기 | 이력해설 | 다운로드 (815 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
using AVEVA.PID.CustomizationUtility.DB;
7
using AVEVA.PID.CustomizationUtility.Model;
8
using AVEVA.PID.CustomizationUtility.Properties;
9
using System.Data;
10

    
11
namespace AVEVA.PID.CustomizationUtility
12
{
13
    public class AvevaInfo
14
    {
15
        static AvevaInfo avevaInfo;
16

    
17
        public DataTable AvevaSymbolTable { get; set; }
18

    
19

    
20
        public static AvevaInfo GetInstance()
21
        {
22
            if (avevaInfo == null)
23
            {
24
                avevaInfo = new AvevaInfo();
25
                Refresh();
26
            }
27
            return avevaInfo;
28
        }
29

    
30
        public static void Refresh()
31
        {
32
            avevaInfo.AvevaSymbolTable = Project_DB.SelectSymbolTable();
33

    
34
        }
35
    }
36
}
클립보드 이미지 추가 (최대 크기: 500 MB)