public EmployeeAppService(
     NmsDataContext nmsDataContext,
     IRepository <EmployeeInfo, int> employeeRepository,
     IRepository <UserLogin, int> userRepository,
     IObjectMapper objectMapper
     )
 {
     _nmsDataContext     = nmsDataContext;
     _employeeRepository = employeeRepository;
     _userRepository     = userRepository;
     _objectMapper       = objectMapper;
 }
 public AnnualRequirementRepository(NmsDataContext nmsDataContext)
 {
     _nmsDataContext = nmsDataContext;
 }
 public UserRoleConfRepository(NmsDataContext context)
 {
     _context = context;
 }
 public CurrencyRepository(NmsDataContext context)
 {
     _context = context;
 }
 public AuthRepository(NmsDataContext nmsDataContext)
 {
     _nmsDataContext = nmsDataContext;
 }
 public EmployeeInfoRepository(NmsDataContext context)
 {
     _context = context;
 }
Exemple #7
0
 public RoleInfoRepository(NmsDataContext context)
 {
     _context = context;
 }
Exemple #8
0
 public ProformaInvoiceRepository(NmsDataContext nmsDataContext)
 {
     _nmsDataContext = nmsDataContext;
 }
Exemple #9
0
 public ImporterInfoRepository(NmsDataContext context, IImporterExcelExporter importerExcel)
 {
     _context       = context;
     _importerExcel = importerExcel;
 }