package benefactorkindboxreqservice

//// TODO: Pagination, Filters, Sort.
// func (s Service) GetAll(ctx context.Context, req param.KindBoxReqGetAllRequest) (param.KindBoxReqGetAllResponse, error) {
//	const op = "userkindboxreqservice.GetAll"
//
//	allKindBoxReq, err := s.repo.GetAllKindBoxReq(ctx, req.BenefactorID)
//	if err != nil {
//		return param.KindBoxReqGetAllResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
//	}
//
//	return param.KindBoxReqGetAllResponse{AllKindBoxReq: allKindBoxReq}, nil
//}