예제 #1
0
        public int DeleteBranch(int branchID)
        {
            int i = 0;

            using (MySqlCommand command = new MySqlCommand())
            {
                i = ExecuteNonQuery(BranchStringsMySql.DeleteBranch(branchID));
            }
            return(i);
        }