d-webservice-example/source/d_webservice_example/mapper/todo_notification_mapper.d

11 lines
480 B
D

module d_webservice_example.mapper.todo_notification_mapper;
import d_webservice_example.data.todo_notification : TodoNotification;
import d_webservice_example.transport.todo_notification_cto : TodoNotificationCTO;
TodoNotificationCTO asTodoNotificationCTO(const TodoNotification todoNotification) nothrow pure @safe @nogc
{
import d_webservice_example.mapper.todo_mapper : asTodoTO;
return TodoNotificationCTO(todoNotification.type, todoNotification.todo.asTodoTO);
}