feat: add update supplier endpoint

This commit is contained in:
caturbgs
2021-12-14 19:57:07 +07:00
parent e6659481de
commit 091d4220db
3 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
import { PartialType } from '@nestjs/mapped-types';
import { CreateSupplierDto } from './create-supplier.dto';
export class UpdateSupplierDto extends PartialType(CreateSupplierDto) {}