Пример #1
0
        public Platform GetPlatformByIotLinkId(int iotLinkId)
        {
            var iotLink = _ioTManager.GetIoTLink(iotLinkId);

            if (iotLink.Form == null)
            {
                return(_platformManager.GetPlatformByReplyId(iotLink.IdeationReply.IdeationReplyId));
            }
            else
            {
                throw new NotImplementedException("Get Platform for form id not implemented");
            }
        }