Ejemplo n.º 1
0
 protected abstract Task <bool> DoCreateAsync(CreateStatement statement);
Ejemplo n.º 2
0
 protected abstract bool DoCreate(CreateStatement statement);
Ejemplo n.º 3
0
 public async Task <bool> CreateAsync(CreateStatement statement)
 {
     return(await this.DoCreateAsync(statement));
 }
Ejemplo n.º 4
0
 // Create methods
 public bool Create(CreateStatement statement)
 {
     return(this.DoCreate(statement));
 }