示例#1
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            DAL.DALPagamentoSalario DALPagamentoSalario = new DAL.DALPagamentoSalario();

            foreach (Modelo.PagamentoSalario Pagamento
                     in DALPagamentoSalario.SelectByFuncionario(Convert.ToInt32(Request["codigo"])))
            {
                DALPagamentoSalario.Delete(Pagamento.Codigo);
            }

            DALFuncionario.Delete(Convert.ToInt32(Request["codigo"]));
            Response.Redirect("Index.aspx");
        }