hotfix: creating a vendor

This commit is contained in:
Ahmed Bouhuolia
2024-04-15 22:48:54 +02:00
parent dc52fb1de5
commit 5e87581f4e
8 changed files with 8 additions and 32 deletions

View File

@@ -50,10 +50,7 @@ export class CustomersApplication {
* @param {ISystemUser} authorizedUser
* @returns {Promise<ICustomer>}
*/
public createCustomer = (
tenantId: number,
customerDTO: ICustomerNewDTO,
) => {
public createCustomer = (tenantId: number, customerDTO: ICustomerNewDTO) => {
return this.createCustomerService.createCustomer(tenantId, customerDTO);
};