Exemplo n.º 1
0
        public bool kayit_islemi(Mesaj_Model mesaj_kayit)
        {
            try
            {
                mesajlar ds = new mesajlar();

                ds.gonderen_id = mesaj_kayit.Gonderen_id;
                ds.alan_id     = mesaj_kayit.Gonderilen_id;
                ds.mesaj       = mesaj_kayit.Mesaj;
                ds.okundu      = mesaj_kayit.Durum;
                ds.tarih       = DateTime.Now;
                kayit.mesajlars.InsertOnSubmit(ds);
                kayit.SubmitChanges();

                return(true);
            }
            catch
            {
                return(false);
            }
        }
Exemplo n.º 2
0
 public void Setmodel(Mesaj_Model mesaj_kayit)
 {
     this.mesaj = mesaj_kayit;
 }
Exemplo n.º 3
0
 public Mesaj_Controller(Mesaj_Model mesaj_kayit)
 {
     this.mesaj = mesaj_kayit;
 }