Exemplo n.º 1
0
 public UnitRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 2
0
 public InvoiceRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 3
0
 public ProductCategoryRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public OrganizationRepository(FandaContext context, IMapper mapper, IUserRepository userRepository)
 {
     _context        = context;
     _mapper         = mapper;
     _userRepository = userRepository;
 }
Exemplo n.º 5
0
 public AccountYearRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 6
0
 public ProductSegmentRepository(FandaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 7
0
 public SerialNumberRepository(FandaContext context)
 {
     _context = context;
 }