Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   @Selector([AppealServicesState, SelectedDocumentsState])
  2.   public static fullBody(
  3.     state: AppealStore,
  4.     services: AppealServiceResponseContract[],
  5.     documents: AppealDocumentResponseContract[]
  6.   ): AppealResponseContract {
  7.     return {
  8.       id: state.id,
  9.       createDate: state.createDate,
  10.       statusChangeDate: state.statusChangeDate,
  11.       status: state.status,
  12.       documents,
  13.       services,
  14.       appealComments: state.appealComments
  15.     };
  16.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement