Example #1
0
 protected ActionResult getFormConfigDTO(FormConfig myConfig, long WorkflowStateId)
 {
     if (myConfig == null)
     {
         return(NotFound());
     }
     return(Ok(DTOCreator.GetFormConfigDTO(myConfig, WorkflowStateId)));
 }
Example #2
0
        protected ActionResult getTicketFormConfigListDTO(List <TicketFormConfig> myConfig)
        {
            if (myConfig == null)
            {
                return(NotFound());
            }

            return(Ok(DTOCreator.GetTicketFormConfigListDTO(myConfig)));
        }