Beispiel #1
0
 public InformationController(
     IInformationsService informationsService,
     IEmailSender emailSender)
 {
     this.informationsService = informationsService;
     this.emailSender         = emailSender;
 }
 public InformationController(IInformationsService informationsService, ILogger <InformationController> logger)
 {
     this.informationsService = informationsService;
     this.logger = logger;
 }
Beispiel #3
0
 public InformationController(IInformationsService informations)
 {
     Informations = informations;
 }
 public InformationController(IInformationsService information, IMapper mapper)
 {
     Information = information;
     Mapper      = mapper;
 }
 public InformationsController(IInformationsService informationsService)
 {
     this.informationsService = informationsService;
 }
 public CommentCreatorRequirement(IInformationsService information)
 {
     Information = information;
 }