Exemple #1
0
 public async Task AddBrand(Brand entity)
 {
     await WithConnection(async conn =>
     {
         await _dapperHelper.AddBrand(conn, entity, _commandText.AddBrand);
     });
 }