Exemple #1
0
 public UnitRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #2
0
 public InvoiceRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #3
0
 public ProductCategoryRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public OrganizationRepository(FandaContext context, IMapper mapper, IUserRepository userRepository)
 {
     _context        = context;
     _mapper         = mapper;
     _userRepository = userRepository;
 }
 public AccountYearRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #6
0
 public ProductSegmentRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #7
0
 public SerialNumberRepository(FandaContext context)
 {
     _context = context;
 }