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