23 lines
521 B
Go
23 lines
521 B
Go
/*
|
|
DESCRIPTION:
|
|
Any functions that are used internally by the use-case
|
|
*/
|
|
package registrator
|
|
|
|
import (
|
|
e "simrs-vx/internal/domain/main-entities/registrator"
|
|
)
|
|
|
|
func setData[T *e.CreateDto | *e.UpdateDto](input T, data *e.Registrator) {
|
|
var inputSrc *e.CreateDto
|
|
if inputT, ok := any(input).(*e.CreateDto); ok {
|
|
inputSrc = inputT
|
|
} else {
|
|
inputTemp := any(input).(*e.UpdateDto)
|
|
inputSrc = &inputTemp.CreateDto
|
|
}
|
|
|
|
data.Employee_Id = inputSrc.Employee_Id
|
|
data.Installation_Code = inputSrc.Installation_Code
|
|
}
|