from abc import ABC, abstractmethod

class ICodeTranslator(ABC,):
    @abstractmethod
    def __init__(self):
        pass

    @abstractmethod
    def translate(self, id, attribute):
        pass

    @abstractmethod
    def translate(self, id, associationVariable):
        pass

