コード例 #1
0
ファイル: Controler.cs プロジェクト: ncthanh97/project
 //Delete a showtime
 public static void DeleteShowtime(string id)
 {
     Showtime_DAO.DeleteShowtime(id);
 }
コード例 #2
0
ファイル: Controler.cs プロジェクト: ncthanh97/project
 public static DataTable FindShowtimeByIdMovie(string id)
 {
     return(Showtime_DAO.FindShowTimeByIdMovie(id));
 }
コード例 #3
0
ファイル: Controler.cs プロジェクト: ncthanh97/project
 //Add a showtime
 public static void AddShowtime(Showtime_DTO showtime)
 {
     Showtime_DAO.AddShowTime(showtime);
 }
コード例 #4
0
ファイル: Controler.cs プロジェクト: ncthanh97/project
 //Edit info showtime
 public static void EditShowtime(Showtime_DTO showtime)
 {
     Showtime_DAO.EditShowTime(showtime);
 }
コード例 #5
0
ファイル: Controler.cs プロジェクト: ncthanh97/project
 public static DataTable ListShowtimeSold()
 {
     return(Showtime_DAO.ListShowTimeSold());
 }