Exemplo n.º 1
0
        public int insertHouse(string houseToInsert)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("insert into houses (code, aria, rooms, bathrooms, cityzone, address, price, description, " +
                                   "type, pic, status, datein, employee) values (" + houseToInsert + ")"));
        }
Exemplo n.º 2
0
        public int joinHouseToClient(int houseID, int clientID)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("update houses set client = " + clientID + " where id = " + houseID));
        }
Exemplo n.º 3
0
        public int deleteHouse(int houseID)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("delete from houses where id = " + houseID));
        }
Exemplo n.º 4
0
        public int updateHouse(int houseID, string houseToUpdate)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("update houses set " + houseToUpdate + " where id = " + houseID));
        }
Exemplo n.º 5
0
        public int insertMessage(string messageToInsert)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("insert into messages (employee, message) values (" + messageToInsert + ")"));
        }
Exemplo n.º 6
0
        public int deleteMessage(int messageID)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("delete from messages where id = " + messageID));
        }
Exemplo n.º 7
0
        public int updateEmployee(int employeeID, string employeeToUpdate)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("update employees set " + employeeToUpdate + " where id = " + employeeID));
        }
Exemplo n.º 8
0
        public int deleteEmployee(int employeeID)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("delete from employees where id = " + employeeID));
        }
Exemplo n.º 9
0
        public int insertEmployee(string employeeToInsert)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("insert into employees (code, fullname, gender, lang, cityzone, type, username, [password], pic) values (" + employeeToInsert + ")"));
        }
Exemplo n.º 10
0
        public int insertSale(string saleToInsert)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("insert into sales (empcommision, lastprice, saledate, house, employee) values (" + saleToInsert + ")"));
        }
Exemplo n.º 11
0
        public int insertClient(string clientToInsert)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("insert into clients (fullname, phone, email, type) values (" + clientToInsert + ")"));
        }
Exemplo n.º 12
0
        public int updateClient(int clientID, string clientToUpdate)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("update clients set " + clientToUpdate + " where id = " + clientID));
        }
Exemplo n.º 13
0
        public int deleteClient(int clientID)
        {
            clsDBconnection db = new clsDBconnection();

            return(db.ExecNonQuery("delete from clients where id = " + clientID));
        }