public AddExpenseToDb()
 {
     this.conn = new DbConn();
 }
 public SellDataFromDb()
 {
     this.conn = new DbConn();
     this.dt   = new DataTable();
 }
Beispiel #3
0
 public TransectionFromDb()
 {
     this.conn = new DbConn();
     this.dt   = new DataTable();
 }
 public priceCollector()
 {
     this.conn = new DbConn();
 }
Beispiel #5
0
 public loginData(string email, string pass)
 {
     this.conn  = new DbConn();
     this.email = email;
     this.pass  = pass;
 }
Beispiel #6
0
 public loginData()
 {
     this.conn  = new DbConn();
     this.email = null;
     this.pass  = null;
 }
Beispiel #7
0
 public AddToStock()
 {
     this.conn = new DbConn();
 }