OperationServiceExtensionsCreateClient Method |
Creates new client. The client must have a card number or at least one phone number.
Namespace: Resto.Front.Api.ExtensionsAssembly: Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntaxpublic static IClient CreateClient(
this IOperationService operationService,
Guid id,
string name,
List<PhoneDto> phones,
string cardNumber,
DateTime? dateCreated,
ICredentials credentials
)
Parameters
- operationService IOperationService
- Operation service.
- id Guid
- Id of creating client. MUST be unique for the whole system. Therefore it must be taken from some synchronization operation or generated with Guid.NewGuid().
- name String
- Name of client
- phones ListPhoneDto
- List of client phones. Cannot contain null values and more than one main phone (i.e. with property IsMain = true)
- cardNumber String
- Discount card number or null if the client doesn't have discount card. If the discount card doesn't exist, consider creating one using CreateDiscountCard(String, String, IPriceCategory, IDiscountType).
- dateCreated NullableDateTime
- Date when client was created. Must be not null, for actual reports by date created of clients.
- credentials ICredentials
- Credentials of the user. Required to pass permission and some other checks, as well as execute personalized operations.
Return Value
IClientUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IOperationService. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also