public bool ThemPhim(string ten, string theloai, DateTime khoichieu, string mota) { try { PhimDTO p = new PhimDTO() { TenPhim = ten, TheLoai = theloai, NgayKhoiChieu = khoichieu, MoTa = mota }; if (phimDAL.ThemPhim(p)) { return(true); } return(false); } catch (Exception) { throw; } }
public void ThemPhim(PhimDTO obj) { obj_phim.ThemPhim(obj); }