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