示例#1
0
 public StudentFeeManagementController(IStudentFeeManagementRepository studentFeeManagementRepository, IMSDbContext iMSDbContext,
                                       UserManager <ApplicationUser> userManager, IInstituteUserMappingHelperService instituteUserMappingHelperService)
     : base(instituteUserMappingHelperService)
 {
     _studentFeeManagementRepository = studentFeeManagementRepository;
     _iMSDbContext = iMSDbContext;
     _userManager  = userManager;
 }
示例#2
0
 public FeeReceiptManagementController(UserManager <ApplicationUser> userManager, IInstituteUserMappingHelperService instituteUserMappingHelperService,
                                       IFeeReceiptManagementRepository feeReceiptManagementRepository, IMSDbContext imsDbContext,
                                       IStudentFeeManagementRepository studentFeeManagementRepository,
                                       IAutoSequenceGeneratorManagementRepository autoSequenceGeneratorManagementRepository) : base(instituteUserMappingHelperService)
 {
     _userManager = userManager;
     _feeReceiptManagementRepository = feeReceiptManagementRepository;
     _imsDbContext = imsDbContext;
     _studentFeeManagementRepository            = studentFeeManagementRepository;
     _autoSequenceGeneratorManagementRepository = autoSequenceGeneratorManagementRepository;
 }