 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- Constants
- type AttributesDto
- type AttributesService
- type AttributesServiceImpl
- func (impl AttributesServiceImpl) AddAttributes(request *AttributesDto) (*AttributesDto, error)
- func (impl AttributesServiceImpl) GetActiveList() ([]*AttributesDto, error)
- func (impl AttributesServiceImpl) GetById(id int) (*AttributesDto, error)
- func (impl AttributesServiceImpl) GetByKey(key string) (*AttributesDto, error)
- func (impl AttributesServiceImpl) UpdateAttributes(request *AttributesDto) (*AttributesDto, error)
 
Constants ¶
      View Source
      
  
const HostUrlKey string = "url"
    Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AttributesDto ¶
type AttributesService ¶
type AttributesService interface {
	AddAttributes(request *AttributesDto) (*AttributesDto, error)
	UpdateAttributes(request *AttributesDto) (*AttributesDto, error)
	GetById(id int) (*AttributesDto, error)
	GetActiveList() ([]*AttributesDto, error)
	GetByKey(key string) (*AttributesDto, error)
}
    type AttributesServiceImpl ¶
type AttributesServiceImpl struct {
	// contains filtered or unexported fields
}
    func NewAttributesServiceImpl ¶
func NewAttributesServiceImpl(logger *zap.SugaredLogger, sessionManager *session.SessionManager, attributesRepository repository.AttributesRepository) *AttributesServiceImpl
func (AttributesServiceImpl) AddAttributes ¶
func (impl AttributesServiceImpl) AddAttributes(request *AttributesDto) (*AttributesDto, error)
func (AttributesServiceImpl) GetActiveList ¶
func (impl AttributesServiceImpl) GetActiveList() ([]*AttributesDto, error)
func (AttributesServiceImpl) GetById ¶
func (impl AttributesServiceImpl) GetById(id int) (*AttributesDto, error)
func (AttributesServiceImpl) GetByKey ¶
func (impl AttributesServiceImpl) GetByKey(key string) (*AttributesDto, error)
func (AttributesServiceImpl) UpdateAttributes ¶
func (impl AttributesServiceImpl) UpdateAttributes(request *AttributesDto) (*AttributesDto, error)
 Click to show internal directories. 
   Click to hide internal directories.