コード例 #1
0
 public bool update(int seansId, string seansSaat)
 {
     try
     {
         SeansBilgisi sb = se.SeansBilgisi.Single(x => x.SeansId == seansId);
         sb.SeansId   = seansId;
         sb.SeansSaat = seansSaat;
         se.SaveChanges();
         return(true);
     }
     catch (Exception ex)
     {
         Console.Write("Hata : " + ex.Message);
         return(false);
     }
 }
コード例 #2
0
 public bool insert(int seansId, string seansSaat)
 {
     try
     {
         SeansBilgisi sb = new SeansBilgisi
         {
             SeansId   = seansId,
             SeansSaat = seansSaat
         };
         se.SeansBilgisi.Add(sb);
         se.SaveChanges();
         return(true);
     }
     catch (Exception ex)
     {
         Console.WriteLine("Hata : " + ex.Message);
         return(false);
     }
 }