Exemplo n.º 1
0
 public AccountCategoriesModel(coaAccountSubCategoryAppService coaAccountSubCategoryAppService, IGuidGenerator guidGenerator, CompanyAppService CompanyAppService, coaHeadAccountAppService headAccountsAppService)
 {
     _subCategoryAppService  = coaAccountSubCategoryAppService;
     _guidGenerator          = guidGenerator;
     _companyAppService      = CompanyAppService;
     _headAccountsAppService = headAccountsAppService;
 }
Exemplo n.º 2
0
 public CreateCategoryModel(CompanyAppService CompanyAppService, coaHeadAccountAppService headAccountsAppService, coaAccountSubCategoryAppService subCategoryAppService, IRepository <DictionaryValue, Guid> dictionaryValuesRepo, IGuidGenerator guidGenerator)
 {
     _companyAppService      = CompanyAppService;
     _headAccountsAppService = headAccountsAppService;
     _subCategoryAppService  = subCategoryAppService;
     _dictionaryValuesRepo   = dictionaryValuesRepo;
     _guidGenerator          = guidGenerator;
 }
Exemplo n.º 3
0
 public EditModel(coaAppService coaAppService, CompanyAppService CompanyAppService, branchAppService branchAppService, coaHeadAccountAppService headAccountsAppService, coaAccountSubCategoryAppService subCategoryAppService, coaSubLedgerRequirementsAppService subLedgerRequirementsAppService, IRepository <AccountStatementType, Guid> accStatementTypeRepo, IRepository <DictionaryValue, Guid> dictionaryValuesRepo, IGuidGenerator guidGenerator)
 {
     _coaAppService                   = coaAppService;
     _companyAppService               = CompanyAppService;
     _branchAppService                = branchAppService;
     _headAccountsAppService          = headAccountsAppService;
     _subCategoryAppService           = subCategoryAppService;
     _subLedgerRequirementsAppService = subLedgerRequirementsAppService;
     _accStatementTypeRepo            = accStatementTypeRepo;
     _dictionaryValuesRepo            = dictionaryValuesRepo;
     _guidGenerator                   = guidGenerator;
 }