public int DeleteBranch(int branchID)
        {
            int i = 0;

            using (SqlCommand command = new SqlCommand())
            {
                i = ExecuteNonQuery(BranchStringsSql.DeleteBranch(branchID));
            }
            return(i);
        }