예제 #1
0
 public HomeController(
     IMapper mapper, IToastNotification toastNotification, IHostingEnvironment hostingEnvironment,
     IAccountClassificationTypeRepository acctype, IAccountClassificationRepository accClassification,
     IAccountTreeRepository tree)
 {
     _mapper            = mapper;
     _toastNotification = toastNotification;
     _AccClassification = accClassification;
     _Acctype           = acctype;
     _tree = tree;
     _hostingEnvironment = hostingEnvironment;
 }
예제 #2
0
 public ReportController(
     IMapper mapper, IHostingEnvironment hostingEnvironment,
     IAccountClassificationTypeRepository acctype, IAccountClassificationRepository accClassification,
     IAccountTreeRepository tree, IConfiguration configuration)
 {
     _mapper            = mapper;
     _AccClassification = accClassification;
     _Acctype           = acctype;
     _tree = tree;
     _hostingEnvironment = hostingEnvironment;
     _configuration      = configuration;
 }