get all customers done

This commit is contained in:
2025-12-11 14:32:46 +01:00
parent ecb098a34f
commit 2ff47263a1
12 changed files with 143 additions and 42 deletions

View File

@@ -15,6 +15,8 @@ export interface CreateContactDto {
phoneNumber?: string | null;
email?: string | null;
address?: string | null;
city?: string | null;
role?: string | null;
customerId?: number | null;
}

View File

@@ -11,5 +11,6 @@
export interface CreateCustomerDto {
note?: string | null;
customerTypeId?: number;
}

View File

@@ -16,6 +16,8 @@ export interface GetContactDto {
phoneNumber?: string | null;
email?: string | null;
address?: string | null;
city?: string | null;
role?: string | null;
customerId?: number | null;
}

View File

@@ -12,5 +12,6 @@
export interface GetCustomerDto {
id?: number;
note?: string | null;
customerTypeId?: number;
}

View File

@@ -18,7 +18,6 @@ export const MethodImplAttributes = {
NUMBER_1: 1,
NUMBER_2: 2,
NUMBER_3: 3,
NUMBER_32: 3,
NUMBER_4: 4,
NUMBER_42: 4,
NUMBER_8: 8,

View File

@@ -15,6 +15,8 @@ export interface UpdateContactDto {
phoneNumber?: string | null;
email?: string | null;
address?: string | null;
city?: string | null;
role?: string | null;
customerTypeId?: number | null;
}