예제 #1
0
        public DevicePanelListViewModel GetDevicePanels(string account, string token, string deviceSn)
        {
            DevicePanelService dps = new DevicePanelService();

            return(dps.GetAllDevicePanel(deviceSn, account, token));
        }
예제 #2
0
        public ResponseData DeleteDevicePanel(DevicePanelViewModel dpvm)
        {
            DevicePanelService dps = new DevicePanelService();

            return(dps.DeleteDevicePanel(dpvm));
        }
예제 #3
0
        public DevicePanelViewModel AddPanel(DevicePanelViewModel dpvm)
        {
            DevicePanelService dps = new DevicePanelService();

            return(dps.AddDevicePanel(dpvm));
        }