コード例 #1
0
ファイル: Decreto.cs プロジェクト: noedelarosa/SIC
 public static Decreto GetInstnace(){
     if (_Decreto == null) _Decreto = new Decreto();
     return _Decreto;
 }
コード例 #2
0
ファイル: Decreto.cs プロジェクト: noedelarosa/SIC
 public static void Clear() {
     _Decreto.Lista = null;
     _Decreto = null;
 }
コード例 #3
0
ファイル: Decreto.cs プロジェクト: noedelarosa/SIC
 public static Decreto Recarga()
 {
     _Decreto = null;
     return GetInstnace(); 
 }