No. A method's name, return type, and arguments define a method's signature, and two methods within the same class cannot have the same signature. Doing so results in a compile time error.
One solution I suggest is to use different method names for IOne.method and ITwo.method, thereby making each method's signature unique. This would allow you to define two unique methods in a single class.