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