protected void btnAddCompany_Click(object sender, EventArgs e) { using (var db = new Classes.DAL()) { //Вот, не могу понять какие аргументы вернее какие типы ставить Company c = new Company(txtName.Text, txtDescription.Text, txtLocation.Text, txtRepAccount.Text, txtActivity.Text); db.AddCompany(c); Response.Redirect("adminCompanies.aspx"); } }