Exemplo n.º 1
0
 public HomeController(IReportShareService _reportShareService)
 {
     this.reportShareService = _reportShareService;
 }
 public ReportInfoController(IReportShareService service) : base()
 {
     this._service = service;
 }
Exemplo n.º 3
0
 public KycController(IKycService _service, IReportShareService shareService)
 {
     this.service            = _service;
     this.reportShareService = shareService;
 }