As you are using a static method in your AccHelper class, you do not need to create an instance in order to call the method.
You can invoke in below way:
AccHelper.Accountrecordinsertion(pass values as parameters).
Also, you can improve your code. For instance, the general convention in Apex is to follow camelCase for method names. It would be better to rename your method to accountRecordInsertion.