コード例 #1
0
        public static List <VitiShkollore> List()
        {
            var LstV = new List <VitiShkollore>();
            var conn = DBHelper.GetConnection();
            var cmd  = new SqlCommand("usp_VitiShkollor_GetList", conn);

            cmd.CommandType = System.Data.CommandType.StoredProcedure;

            try
            {
                conn.Open();

                var rdr = cmd.ExecuteReader();
                while (rdr.Read())
                {
                    var vitiShkollore = new VitiShkollore();
                    vitiShkollore.Id           = int.Parse(rdr["Id"].ToString());
                    vitiShkollore.VitiShkollor = rdr["VitiShkollor"].ToString();


                    LstV.Add(vitiShkollore);
                }
                return(LstV);
            }
            catch (Exception)
            {
                return(null);
            }
            finally
            {
                conn.Close();
            }
        }
コード例 #2
0
        public static bool Create(VitiShkollore vitiSh)
        {
            var conn = DBHelper.GetConnection();

            try
            {
                var cmd = new SqlCommand("usp_VitiShkollor_Insert", conn);
                cmd.CommandType = System.Data.CommandType.StoredProcedure;

                cmd.Parameters.AddWithValue("@prmNVitiShkollor", vitiSh.VitiShkollor);


                conn.Open();
                cmd.ExecuteNonQuery();

                return(true);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                conn.Close();
            }
        }
コード例 #3
0
        public ActionResult CreateVitiShkollore(VitiShkollore vitiShkollore)
        {
            if (ModelState.IsValid)
            {
                DAL.DAL_VitiShkollor.Create(vitiShkollore);
                return(RedirectToAction("ShowVitiShkollor"));
            }

            return(View(vitiShkollore));
        }