add : QvmModule.java

This commit is contained in:
zakaria.hachem
2024-11-05 13:50:29 +01:00
parent 7b6d04818e
commit dd203b7937

View File

@@ -0,0 +1,30 @@
/*
* Axelor Business Solutions
*
* Copyright (C) 2019 Axelor (<http://axelor.com>).
*
* 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 <http://www.gnu.org/licenses/>.
*/
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);
}
}