I have classes which are dependent on an interface which defines methods CREATE , READER , UPDATE and DELETE
However some of my implementation do not have option for CREATE
I believe it is not best practice to force those classes to implement CREATE method .
How can I best implement my interface so that it is not mandatory to implement CREATE in some classes .