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