Beispiel #1
0
 /// <summary>
 /// </summary>
 /// <param name="context">См. описание <see cref="Context"/></param>
 public RepositoryInternalBase(DataContextInternal context = null)
 {
     if (context == null)
     {
         throw new ArgumentNullException(nameof(context), "Указан пустой контекст.");
     }
     _context = context;
 }
Beispiel #2
0
 /// <summary>
 /// </summary>
 /// <param name="context">См. описание <see cref="Context"/></param>
 public RepositoryInternal(DataContextInternal context = null) : base(context)
 {
 }