public int EkleSorumlu(Sorumlular sorumlu)
        {
            try
            {
                comm.CommandText = "INSERT INTO  Sorumlu(SorumluAd,SorumluSoyad,SorumluAlan,SorumluSifre,SorumluMail) " +
                                   "VALUES(@SorumluAd, @SorumluSoyad, @SorumluAlan,@SorumluSifre,@SorumluMail)";
                comm.Parameters.AddWithValue("@SorumluAd", sorumlu.SorumluAd);
                comm.Parameters.AddWithValue("@SorumluSoyad", sorumlu.SorumluSoyad);
                comm.Parameters.AddWithValue("@SorumluAlan", sorumlu.SorumluAlan);
                comm.Parameters.AddWithValue("@SorumluSifre", sorumlu.SorumluSifre);
                comm.Parameters.AddWithValue("@SorumluMail", sorumlu.SorumluMail);


                comm.CommandType = CommandType.Text;
                conn.Open();
                return(comm.ExecuteNonQuery());
            }
            catch (Exception e)
            {
                throw;
            }
            finally
            {
                if (conn != null)
                {
                    conn.Close();
                }
            }
        }
 public int girisSorumlu(Sorumlular sorumlu)
 {
     try
     {
         comm.CommandText = "Select * from Sorumlu where SorumluMail=@SorumluMail and SorumluSifre=@SorumluSifre";
         comm.Parameters.AddWithValue("@SorumluMail", sorumlu.SorumluMail);
         comm.Parameters.AddWithValue("@SorumluSifre", sorumlu.SorumluSifre);
         comm.CommandType = CommandType.Text;
         conn.Open();
         int UserExist = (int)comm.ExecuteScalar();
         if (UserExist > 0)
         {
             return(1);
         }
         else
         {
             return(0);
         }
     }
     catch (Exception e)
     {
         return(0);
     }
     finally
     {
         if (conn != null)
         {
             conn.Close();
         }
     }
 }
 public int SilSorumlu(Sorumlular sorumlu)
 {
     try
     {
         comm.CommandText = "DELETE Sorumlu where SorumluAd=@SorumluAd";
         comm.Parameters.AddWithValue("@SorumluAd", sorumlu.SorumluAd);
         comm.CommandType = CommandType.Text;
         conn.Open();
         return(comm.ExecuteNonQuery());
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         if (conn != null)
         {
             conn.Close();
         }
     }
 }
        public Sorumlular SorumluGetir(Sorumlular sorumlu)
        {
            Sorumlular srm = new Sorumlular();

            try
            {
                comm.CommandText = "Select * from Sorumlu where SorumluMail=@SorumluMail";
                comm.Parameters.AddWithValue("@SorumluMail", sorumlu.SorumluMail);

                comm.CommandType = CommandType.Text;
                conn.Open();

                SqlDataReader reader = comm.ExecuteReader();
                while (reader.Read())
                {
                    srm.SorumluID    = Convert.ToInt32(reader[0]);
                    srm.SorumluAd    = reader[1].ToString();
                    srm.SorumluSoyad = reader[2].ToString();
                    srm.SorumluAlan  = reader[3].ToString();
                    srm.SorumluSifre = reader[4].ToString();
                    srm.SorumluMail  = reader[5].ToString();
                }
                return(srm);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                if (conn != null)
                {
                    conn.Close();
                }
            }
        }