public Repository()
 {
     Context = new CohortContext();
 }
 public Repository(CohortContext context)
 {
     Context = context;
 }
 public CohortRepository(CohortContext context)
 {
     this.Context = context;
 }