Exemplo n.º 1
0
 internal static void Clear()
 {
     Kernel_ApplicationState.Clear();
     Kernel_DataService.Clear();
     Kernel_Sharing.Clear();
     Kernel_MainViewModel.Clear();
 }
Exemplo n.º 2
0
        internal static ISharing Get()
        {
            if (_Sharing != null)
            {
                return(_Sharing);
            }
            var x = new SharingModel(
                );

            _Sharing           = x;
            x.ApplicationState = Kernel_ApplicationState.Get();
            return(_Sharing);
        }