from ..models import Registration class RegistrationMixin(object): def create_registration(self, data): r = Registration(**data) r.save() return r