public List <SqlParameter> MapParamsForUpsert(AttributeTypeData entity) => new List <SqlParameter> { BuildParam("@attribute_type_key", entity.AttributeTypeKey), BuildParam("@attribute_type_code", entity.AttributeTypeCode), BuildParam("@attribute_type_name", entity.AttributeTypeName), BuildParam("@attribute_type_desc", entity.AttributeTypeDesc), GetOutParam() };
public List <SqlParameter> MapParamsForDelete(AttributeTypeData entity) => MapParamsForDelete(entity.AttributeTypeKey);