コード例 #1
0
ファイル: Data_CRUD.cs プロジェクト: codertuhin/IntrusionGUI
        //Have functionality to store data in DB
        //But the method should have return type of 'UI_Channel_Display' to get and pass data from DB
        internal static void UpdateChannelDisplay(I_UI_Channel_Display p_data)
        {
            //Database CRUD functions//

            var _IsRecording = p_data.IsRecording;
            var _IsConnected = p_data.IsConnected;
        }
コード例 #2
0
ファイル: Data_CRUD.cs プロジェクト: codertuhin/IntrusionGUI
 //How and when this function will be called//
 internal static void UpdateBasicChannel(I_UI_Channel_Display p_data)
 {
     //Database CRUD functions//
 }