Example #1
0
 public static IGastoDAL create()
 {
     if (_Gasto == null)
     {
         _Gasto = new GastoDALSQLite();
     }
     return(_Gasto);
 }
Example #2
0
 public GastoBLL()
 {
     _db = GastoDALFactory.create();
 }