From dd203b7937b8bc5f74ef52bdc2b727964cae6772 Mon Sep 17 00:00:00 2001 From: "zakaria.hachem" Date: Tue, 5 Nov 2024 13:50:29 +0100 Subject: [PATCH] add : QvmModule.java --- .../com.axelor/apps.qvm/module/QvmModule.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 modules/axelor-open-suite/axelor-qvm/src/main/java/com.axelor/apps.qvm/module/QvmModule.java diff --git a/modules/axelor-open-suite/axelor-qvm/src/main/java/com.axelor/apps.qvm/module/QvmModule.java b/modules/axelor-open-suite/axelor-qvm/src/main/java/com.axelor/apps.qvm/module/QvmModule.java new file mode 100644 index 0000000..eebdf0b --- /dev/null +++ b/modules/axelor-open-suite/axelor-qvm/src/main/java/com.axelor/apps.qvm/module/QvmModule.java @@ -0,0 +1,30 @@ +/* + * Axelor Business Solutions + * + * Copyright (C) 2019 Axelor (). + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ +package com.axelor.apps.qvm.module; + +import com.axelor.app.AxelorModule; +import com.axelor.apps.qvm.service.OperationService; +import com.axelor.apps.qvm.service.OperationServiceImpl; + +public class QvmModule extends AxelorModule { + + @Override + protected void configure() { + bind(OperationService.class).to(OperationServiceImpl.class); + } +}