Пример #1
0
 public TaxEntryService()
 {
     _dbContext = new SMEdbContext();
     _FinancialYearTaxHeadMapping = _dbContext.FinancialYearTaxHeadMappings;
     _NewLoanFinancialEntry = _dbContext.NewLoanFinancialEntries;
     _NewLoanFinancialEntryMaster = _dbContext.NewLoanFinancialEntryMasters;
 }
Пример #2
0
 public BaseService()
 {
     _dbContext = new SMEdbContext();
     _LoanType = _dbContext.LoanTypes;
     _ProductType = _dbContext.ProductTypes;
     _IndustryMaster = _dbContext.IndustryMasters;
     _dbContext.Configuration.ProxyCreationEnabled = false;
 }
Пример #3
0
 public RegistrationService()
 {
     _dbContext = new SMEdbContext();
      _SMERegistration = _dbContext.SMERegistrations;
      _UserDetail = _dbContext.UserDetails;
      _UserCompanyDetail = _dbContext.UserCompanyDetails;
      _MobileOTPDetail = _dbContext.MobileOTPDetails;
 }
Пример #4
0
 public MyProfileService()
 {
     _dbContext = new SMEdbContext();
     _UserCompanyDetail = _dbContext.UserCompanyDetails;
     _AgentCustomerDetail = _dbContext.AgentCustomerDetails;
 }
Пример #5
0
 public LoginService()
 {
     _dbContext = new SMEdbContext();
     _UserDetail = _dbContext.UserDetails;
 }
Пример #6
0
 public NewLoanService()
 {
     _dbContext = new SMEdbContext();
     _NewLoanEntry = _dbContext.NewLoanEntries;
 }
Пример #7
0
 public FinanceLoanHistoryService()
 {
     _dbContext = new SMEdbContext();
     _NewLoanFinancialHistory = _dbContext.NewLoanFinancialHistories;
 }