2024-07-13 12:33:07 +00:00
|
|
|
package agentkindboxservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-07-24 23:45:04 +00:00
|
|
|
|
2024-07-13 12:33:07 +00:00
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/agent/kind_box"
|
|
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s Service) Get(ctx context.Context, req param.GetKindBoxRequest) (param.GetKindBoxResponse, error) {
|
|
|
|
const op = "agentkindboxservice.Get"
|
|
|
|
|
|
|
|
kindBox, err := s.repo.GetAwaitingReturnByAgent(ctx, req.KindBoxID, req.AgentID)
|
|
|
|
if err != nil {
|
|
|
|
return param.GetKindBoxResponse{}, richerror.New(op).WithErr(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return param.GetKindBoxResponse{
|
|
|
|
KindBox: kindBox,
|
|
|
|
}, nil
|
|
|
|
}
|