Ejemplo n.º 1
0
        public async Task <Tuple <ErrorResponse, TemplateInputMapping> > CreateTemplateInputAsync(string templateId, TemplateInputMapping templateInputMapping)
        {
            await repository.CreateTemplateInputAsync(templateId, templateInputMapping);

            return(new Tuple <ErrorResponse, TemplateInputMapping>(null, templateInputMapping));
        }