示例#1
0
 public UserServiceImpl(IUserRepository userRepository, IMapper mapper, IRecordBillUnitOfWork unitOfWork, IBillRepository billRepository, IBillCategoryRepository billCategoryRepository)
 {
     _userRepository         = userRepository;
     _mapper                 = mapper;
     _unitOfWork             = unitOfWork;
     _billRepository         = billRepository;
     _billCategoryRepository = billCategoryRepository;
 }
示例#2
0
 public BillServiceImpl(IBillRepository billRepository, IRecordBillUnitOfWork unitOfWork, IMapper mapper)
 {
     _billRepository = billRepository;
     _unitOfWork     = unitOfWork;
     _mapper         = mapper;
 }