Exemplo n.º 1
0
 public Statistics(LythenContext _db)
 {
     if (_db == null)
     {
         db = new LythenContext();
     }
     else
     {
         db = _db;
     }
 }
Exemplo n.º 2
0
 public ApplyManager(LythenContext _db)
 {
     if (_db == null)
     {
         db = new LythenContext();
     }
     else
     {
         db = _db;
     }
 }
Exemplo n.º 3
0
 public Bills(LythenContext _db)
 {
     if (_db == null)
     {
         db = new LythenContext();
     }
     else
     {
         db = _db;
     }
 }