Example #1
0
 public void AddIntegerAttribute(
     Table table,
     string name,
     bool isNullable = true)
 {
     _attributeService.AddIntegerNumber(
         table: table,
         name: name,
         sqlType: TSQLType.INT,
         isNullable: isNullable);
 }