public EbayManagementRepositroy(IUnitOfWork context, IEbayBaseRepository ebayCore)
            : base(context)
        {
            if (ebayCore == null)   { throw new NotImplementedException("IEbayBaseRepository"); }
            if (context == null)    { throw new NotImplementedException("IUnitOfWork"); }

            EbayCore = ebayCore;
        }
Exemplo n.º 2
0
        public EbayManagementRepositroy(IUnitOfWork context, IEbayBaseRepository ebayCore) : base(context)
        {
            if (ebayCore == null)
            {
                throw new NotImplementedException("IEbayBaseRepository");
            }
            if (context == null)
            {
                throw new NotImplementedException("IUnitOfWork");
            }

            EbayCore = ebayCore;
        }