public UnitOfWork(MatchesOfSportsContext MatchesContext)
 {
     context = MatchesContext;
 }
Beispiel #2
0
        public void FailToCreatIfContextIsNull()
        {
            MatchesOfSportsContext context = null;

            RepositoryOf <Sport> repository = new RepositoryOf <Sport>(context);
        }