Beispiel #1
0
 protected void btnKaydet_Click(object sender, EventArgs e)
 {
     Entity.Model.Type _type = new Entity.Model.Type()
     {
         TypeName = txtTypeName.Text,
     };
     TypeRepository.AddType(_type);
     Response.Redirect("FilmList.aspx");
 }