public BreedRootMutation(
            GraphQLUserContextAccessor accessor,
            IBreedManager breeds,
            INoteManager notes,
            IUnitOfWork unitOfWork
            )
        {
            this._context    = accessor.Context;
            this._breeds     = breeds;
            this._notes      = notes;
            this._unitOfWork = unitOfWork;

            this.AddNoteMutations();
        }
Exemple #2
0
 public BreedRootResolver(IBreedManager breeds) : base(breeds)
 {
 }