Ejemplo n.º 1
0
 public RegulatoryNormController(IRegulatoryNormsService regulatoryNormsService, IExternalRegulatoryNormsService externalRegulatoryNormsService)
 {
     this.regulatoryNormsService = regulatoryNormsService ?? throw new ArgumentNullException(nameof(regulatoryNormsService));
 }
Ejemplo n.º 2
0
 public ConsultingController(IRegulatoryNormsService regulatoryNormsService)
 {
     this._regulatoryNormsService = regulatoryNormsService ?? throw new ArgumentNullException(nameof(regulatoryNormsService));
 }