Ejemplo n.º 1
0
 public PlcTag(ITagTable parentTagTable, string name = null, string address = null, string comment = null, DataType dataType = DataType.UNKNOWN, bool isHmiVisible = true, bool isHmiAccessible = true)
 {
     this.TagTable        = parentTagTable;
     this.Name            = name;
     this.DataType        = dataType;
     this.LogicalAddress  = address;
     this.Comment         = comment;
     this.IsHmiVisible    = isHmiVisible;
     this.IsHmiAccessible = isHmiAccessible;
 }
        public RecalculateDownloadCountsCommand(ITagTransactionTable txTable, ITagTable tagTable, IRedirectTable redirectTable, IDownloadTable downloadTable)
        {
            this.TagTransactionTable = txTable;

            this.TagTable = tagTable;

            this.RedirectTable = redirectTable;

            this.DownloadTable = downloadTable;
        }
Ejemplo n.º 3
0
        public UpdateStorageCommand(ITagTransactionTable txTable, ITagTransactionBlobContainer transactionContainer, ITagTable tagTable, ITagBlobContainer blobContainer, IRedirectTable redirectTable)
        {
            this.TagTransactionTable = txTable;

            this.TagTransactionContainer = transactionContainer;

            this.TagTable = tagTable;

            this.TagBlobContainer = blobContainer;

            this.RedirectTable = redirectTable;
        }