public int RegisterEmployeeReceptionist(int receptionistEmpId, string marks10, string marks12)
    {
        RegisterEmployeeReceptionistBO objRegisterEmployeeReceptionistBO = new RegisterEmployeeReceptionistBO();
        objRegisterEmployeeReceptionistBO.receptionistEmpId = receptionistEmpId;
        objRegisterEmployeeReceptionistBO.marks10 = marks10;
        objRegisterEmployeeReceptionistBO.marks12 = marks12;

        RegisterEmployeeReceptionistDL objRegisterEmployeeReceptionistDL = new RegisterEmployeeReceptionistDL();
        return objRegisterEmployeeReceptionistDL.RegisterEmployeeReceptionist(objRegisterEmployeeReceptionistBO);
    }
示例#2
0
    public int RegisterEmployeeReceptionist(int receptionistEmpId, string marks10, string marks12)
    {
        RegisterEmployeeReceptionistBO objRegisterEmployeeReceptionistBO = new RegisterEmployeeReceptionistBO();

        objRegisterEmployeeReceptionistBO.receptionistEmpId = receptionistEmpId;
        objRegisterEmployeeReceptionistBO.marks10           = marks10;
        objRegisterEmployeeReceptionistBO.marks12           = marks12;

        RegisterEmployeeReceptionistDL objRegisterEmployeeReceptionistDL = new RegisterEmployeeReceptionistDL();

        return(objRegisterEmployeeReceptionistDL.RegisterEmployeeReceptionist(objRegisterEmployeeReceptionistBO));
    }