()
| 249 | } |
| 250 | |
| 251 | func (i *imlSubscribeApplyService) OnComplete() { |
| 252 | i.IServiceGet = universally.NewGet[Apply, subscribe.Apply](i.store, FromApplyEntity) |
| 253 | i.IServiceCreate = universally.NewCreator[CreateApply, subscribe.Apply](i.store, "subscribe_apply", i.createEntityHandler, i.uniquestHandler, i.labelHandler) |
| 254 | i.IServiceDelete = universally.NewDelete[subscribe.Apply](i.store) |
| 255 | i.IServiceEdit = universally.NewEdit[EditApply, subscribe.Apply](i.store, i.updateHandler, i.labelHandler) |
| 256 | } |
| 257 | |
| 258 | func (i *imlSubscribeApplyService) idHandler(e *subscribe.Apply) int64 { |
| 259 | return e.Id |
nothing calls this directly
no test coverage detected