public EmailRepository(ContactDbContext context) : base(context) { }
/// <summary> /// /// </summary> /// <param name="context">owned by this repository, and will be disposed of</param> protected BaseRepository(ContactDbContext context) { Context = context; }
public ContactRepository(ContactDbContext context) : base(context) { }