//Handler class
public with sharing class AccountTriggerHandler {
public Static void beforeInsert(ListaccountList){
for(Account acc : accountList){
if(acc.Industry== Null){
acc.Industry = 'Education';
}
if(acc.Description == Null){
acc.Description = 'Account Description is blank';
}
}
}
}