Example #1
0
 public PettyCashManagement(IPettyCashRepository pettyCashRepository, IUnitOfWork unitOfWork)
 {
     this.pettyCashRepository = pettyCashRepository;
     this.unitOfWork          = unitOfWork;
 }
Example #2
0
 public PettyCashController(IPettyCashRepository pettyCashRepository)
 {
     this.pettyCashRepository = pettyCashRepository;
 }