示例#1
0
        private IList <HargaGrosir> GetListHargaGrosir(string produkId)
        {
            IHargaGrosirRepository repo = new HargaGrosirRepository(_context, _log);

            return(repo.GetListHargaGrosir(produkId));
        }
示例#2
0
        private HargaGrosir GetHargaGrosir(string produkId, int hargaKe, IDbTransaction transaction = null)
        {
            IHargaGrosirRepository repo = new HargaGrosirRepository(_context, _log);

            return(repo.GetHargaGrosir(produkId, hargaKe, transaction));
        }