public InvitedController(IActivityRepository activityContext, IPersonInviteRepository inviteContext, IPersonRepository personContext)
 {
     this.activityContext = activityContext;
     this.inviteContext   = inviteContext;
     this.personContext   = personContext;
 }
示例#2
0
 public ActivityRepository(ApplicationDbContext context, IPersonInviteRepository inviteContext, IPersonOrganizedActivityRepository organizedContext)
 {
     this.context          = context;
     this.inviteContext    = inviteContext;
     this.organizedContext = organizedContext;
 }