public static CreateContactMechDto ToCreateContactMech(this ContactMechStateDtoWrapper state)
 {
     return(state.ToCreateContactMech <CreateContactMechDto>());
 }
 public static DeleteContactMechDto ToDeleteContactMech(this ContactMechStateDtoWrapper state)
 {
     return(state.ToDeleteContactMech <DeleteContactMechDto>());
 }
 public static MergePatchContactMechDto ToMergePatchContactMech(this ContactMechStateDtoWrapper state)
 {
     return(state.ToMergePatchContactMech <MergePatchContactMechDto>());
 }
 public static IContactMechCommand ToCreateOrMergePatchContactMech(this ContactMechStateDtoWrapper state)
 {
     return(state.ToCreateOrMergePatchContactMech <CreateContactMechDto, MergePatchContactMechDto>());
 }