Esempio n. 1
0
 public ListModel(IJsonSerializer jsonSerializer, PayrunAppService payrunAppService, IRepository <DictionaryValue, Guid> dicValuesRepo, SocialInsuranceSetupAppService socialInsuranceAppService)
 {
     JsonSerializer            = jsonSerializer;
     PayrunAppService          = payrunAppService;
     DicValuesRepo             = dicValuesRepo;
     SocialInsuranceAppService = socialInsuranceAppService;
 }
Esempio n. 2
0
        public IndexModel(IRepository <DictionaryValue, Guid> dictionaryValuesRepo, SocialInsuranceSetupAppService sIAppService, IRepository <SIContribution> sIContributionRepo, IRepository <SIContributionCategory> sIContributionCatRepo)
        {
            DictionaryValuesRepo = dictionaryValuesRepo;
            SIAppService         = sIAppService;

            ContribCatRepo = sIContributionCatRepo;
            ContribsRepo   = sIContributionRepo;
        }