public ParentController(IParentRepo parentRepo) { this.repo = parentRepo; }
public UserController(ITutorRepo tutorRepo, IParentRepo parentRepo) { this.repo = tutorRepo; this.pRepo = parentRepo; }
public ParentService(IParentRepo repo) { this.repo = repo; }