get all customers done
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,5 +11,6 @@
|
||||
|
||||
export interface CreateCustomerDto {
|
||||
note?: string | null;
|
||||
customerTypeId?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -12,5 +12,6 @@
|
||||
export interface GetCustomerDto {
|
||||
id?: number;
|
||||
note?: string | null;
|
||||
customerTypeId?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user