Пример #1
0
        public UnitOfWork(PersonsDemoContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            _context = context;
        }