diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-23 23:50:13 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-23 23:50:13 +0200 |
| commit | 879a7c2179d991f4b68a513f60de3472b2e64102 (patch) | |
| tree | 283332c93e59ff85e05a61c930760ec3b1b2525b /Software/Visual_Studio/Tango.Core/ExtendedObject.cs | |
| parent | d4cde3ccf2c29991b65285396fb97eafa1e434df (diff) | |
| download | Tango-879a7c2179d991f4b68a513f60de3472b2e64102.tar.gz Tango-879a7c2179d991f4b68a513f60de3472b2e64102.zip | |
Implemented cached entities using DataResolver<T>.
Implemented DataResolver Builder.
Implemented offline gateway, authentication, machines...
Implemented online checking.
Moved FSEWebClient and Gateway to BL.
Implemented blocking of machines outside of the organization.
Diffstat (limited to 'Software/Visual_Studio/Tango.Core/ExtendedObject.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Core/ExtendedObject.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Core/ExtendedObject.cs b/Software/Visual_Studio/Tango.Core/ExtendedObject.cs index acead4157..63a75480c 100644 --- a/Software/Visual_Studio/Tango.Core/ExtendedObject.cs +++ b/Software/Visual_Studio/Tango.Core/ExtendedObject.cs @@ -1,4 +1,5 @@ -using Newtonsoft.Json; +using LiteDB; +using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; @@ -33,6 +34,7 @@ namespace Tango.Core /// </summary> [JsonIgnore] [NotMapped] + [BsonIgnore] public LogManager LogManager { get { return LogManager.Default; } @@ -43,6 +45,7 @@ namespace Tango.Core /// </summary> [JsonIgnore] [NotMapped] + [BsonIgnore] public TemporaryManager TemporaryManager { get { return TemporaryManager.Default; } @@ -98,6 +101,7 @@ namespace Tango.Core /// </summary> [NotMapped] [JsonIgnore] + [BsonIgnore] public bool DesignMode { get { return (DesignerProperties.GetIsInDesignMode(new DependencyObject())); } |
