Exemple #1
0
 public void AddDecimalAttribute(
     Table table,
     string name,
     bool isNullable = true,
     int?precision   = null,
     int?scale       = null)
 {
     _attributeService.AddDecimalNumber(
         table: table,
         name: name,
         sqlType: TSQLType.DECIMAL,
         precision: precision,
         scale: scale,
         isNullable: isNullable);
 }