/** * @param theLoaiDTO */ public void ThemTheLoai(TheLoaiDTO theLoaiDTO) { // TODO implement here try { theLoaiDAO.ThemTheLoai(theLoaiDTO); } catch (Exception ex) { throw ex; } }
public void ThemTheLoai(string tenTheLoai) { try { TheLoaiDAO TheLoai = new TheLoaiDAO(); DataTable dsTheLoai = TheLoai.LayDanhSachTheLoai(); string maTheLoai = "TLS" + (int.Parse(dsTheLoai.Rows[dsTheLoai.Rows.Count - 1][0].ToString().Substring(3, 3)) + 1).ToString("000"); TheLoai.ThemTheLoai(maTheLoai, tenTheLoai); } catch (Exception) { throw; } }