Exemplo n.º 1
0
        public static string PersonelKayit(int tur, string tc, string ad, string soyad, bool cins, byte[] resimPath, string pass1, string pass2)
        {
            string mesaj = "";
            bool   b     = true;

            mesaj += KayitKontrol.TextKontol(tc, ad, soyad, null, pass1, pass2);
            if (mesaj == "" && resimPath.Count() != 0)
            {
                per.Resim  = resimPath;
                per.Tc     = tc;
                per.Ad     = ad;
                per.Soyad  = soyad;
                per.TurID  = tur;
                per.Parola = pass1;

                per.GirisTarihi = DateTime.Now.ToShortDateString();
                per.AktifMi     = cins;
                db.Personels.Add(per);
                int a = db.SaveChanges();
                if (a != 0)
                {
                    mesaj = "Personel Eklendi";
                }
                else
                {
                    mesaj = "Personel Eklenemedi";
                }
            }



            return(mesaj);
        }
Exemplo n.º 2
0
        public static string HastaKayit(string tc, string ad, string soyad, string dogumTarihi, bool cins, string pass1, string pass2)
        {
            string mesaj = KayitKontrol.TextKontol(tc, ad, soyad, dogumTarihi, pass1, pass2);

            if (mesaj == "")
            {
                hs.Tc                = tc;
                hs.Ad                = ad;
                hs.Soyad             = soyad;
                hs.DogumTarihi       = dogumTarihi;
                hs.Cinsiyet          = cins;
                hs.Parola            = pass1;
                hs.OlusturulmaTarihi = DateTime.Now.ToShortDateString();
                db.Hastas.Add(hs);

                int a = db.SaveChanges();
                if (a != 0)
                {
                    mesaj = "Hasta Kaydı Yapıldı";
                }
            }



            return(mesaj);
        }