CreateAsync() public method

public CreateAsync ( IOdooCreateModel model, OdooContext context = null ) : Task>
model IOdooCreateModel
context OdooContext
return Task>
コード例 #1
0
 public async Task <OdooResult <long> > CreateAsync(IOdooCreateModel model, OdooContext context = null)
 {
     return(await OdooClient.CreateAsync(model, context));
 }
コード例 #2
0
 public async Task <OdooResult <long> > CreateAsync(IOdooCreateModel model)
 {
     return(await OdooClient.CreateAsync(model));
 }