toCsrProps method

CSRConfigProps toCsrProps(
  1. String solutionName
)

Implementation

CSRConfigProps toCsrProps(String solutionName) {
  return CSRConfigProps(
    egsModel: model,
    egsSerialNumber: uuid,
    solutionName: solutionName,
    vatNumber: vatNumber,
    branchLocation: location.branchLocation ?? '',
    branchIndustry: branchIndustry,
    branchName: branchName,
    taxpayerName: taxpayerName,
    taxpayerProvidedId: taxpayerProvidedId,
    production: false,
  );
}