feat (encouter): not tested yet, also add crud for soapi, adime, sbar
This commit is contained in:
No files matched your search
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
DESCRIPTION:
|
||||
Any functions that are used internally by the use-case
|
||||
*/
|
||||
package soapi
|
||||
|
||||
import (
|
||||
e "simrs-vx/internal/domain/main-entities/soapi"
|
||||
)
|
||||
|
||||
func setData[T *e.CreateDto | *e.UpdateDto](input T, data *e.Soapi) {
|
||||
var inputSrc *e.CreateDto
|
||||
if inputT, ok := any(input).(*e.CreateDto); ok {
|
||||
inputSrc = inputT
|
||||
} else {
|
||||
inputTemp := any(input).(*e.UpdateDto)
|
||||
inputSrc = &inputTemp.CreateDto
|
||||
}
|
||||
|
||||
data.Encounter_Id = inputSrc.Encounter_Id
|
||||
data.Employee_Id = inputSrc.Employee_Id
|
||||
data.Time = inputSrc.Time
|
||||
data.Value = inputSrc.Value
|
||||
}
|
||||
Reference in New Issue
Block a user