Skip to content

Commit b210f1d

Browse files
committed
Add ConvertDifferentMultipleDateTypesToFixedDateFormat Module
1 parent e4a5abc commit b210f1d

38 files changed

+30363
-0
lines changed

Data Manipulation/ConvertDifferentMultipleDateTypesToFixedDateFormat/.local/AllDependencies.json

+21,188
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)AllDependencies.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\CatarinaValente\.nuget\packages\</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">Unknown</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.1</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="C:\Users\CatarinaValente\.nuget\packages\" />
14+
</ItemGroup>
15+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
16+
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\CatarinaValente\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
17+
<PkgUiPath_Mail_Activities Condition=" '$(PkgUiPath_Mail_Activities)' == '' ">C:\Users\CatarinaValente\.nuget\packages\uipath.mail.activities\1.22.1</PkgUiPath_Mail_Activities>
18+
</PropertyGroup>
19+
</Project>

Data Manipulation/ConvertDifferentMultipleDateTypesToFixedDateFormat/.local/PackageCache.json

+7,442
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"Compiler":"2","ProjectWatches":"{\"Value\":[]}","OpenedDocuments":"[{\"DocumentPath\":\"ConvertDifferentMultipleDateTypesToFixedDateFormat.xaml\",\"FactoryId\":\"{ACB8E7BA-F093-44C1-9B50-33ECA51AAE16}\"}]","ProjectBreakpoints":"{\"CodeBreakpoints\":{},\"Value\":{}}","ProjectActivitiesViewState":"{\"ConvertDifferentMultipleDateTypesToFixedDateFormat.xaml\":[{\"ActivityIdRef\":\"LogMessage_1\",\"IsAdvancedOptionsExpanded\":false,\"Widgets\":{}},{\"ActivityIdRef\":\"LogMessage_2\",\"IsAdvancedOptionsExpanded\":false,\"Widgets\":{}},{\"ActivityIdRef\":\"LogMessage_3\",\"IsAdvancedOptionsExpanded\":false,\"Widgets\":{}},{\"ActivityIdRef\":\"LogMessage_4\",\"IsAdvancedOptionsExpanded\":false,\"Widgets\":{}}]}"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"Workflows": [
3+
{
4+
"Path": null,
5+
"SortBy": 0,
6+
"VariablesSectionElementsOrder": [],
7+
"ArgumentsSectionElementsOrder": null,
8+
"ConstantsSectionElementsOrder": [],
9+
"AddedNamespaces": null
10+
},
11+
{
12+
"Path": "ConvertDifferentMultipleDateTypesToFixedDateFormat.xaml",
13+
"SortBy": 0,
14+
"VariablesSectionElementsOrder": [],
15+
"ArgumentsSectionElementsOrder": [
16+
"in_str_FixedDateFormat",
17+
"out_str_DateWithFixedFormat",
18+
"in_str_DateWithDifferentFormat"
19+
],
20+
"ConstantsSectionElementsOrder": [],
21+
"AddedNamespaces": null
22+
}
23+
]
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Data;
4+
using UiPath.CodedWorkflows;
5+
using UiPath.Core;
6+
using UiPath.Core.Activities.Storage;
7+
using UiPath.Mail.Activities.Api;
8+
using UiPath.Orchestrator.Client.Models;
9+
using UiPath.Testing;
10+
using UiPath.Testing.Activities.TestData;
11+
using UiPath.Testing.Activities.TestDataQueues.Enums;
12+
using UiPath.Testing.Enums;
13+
using UiPath.UIAutomationNext.API.Contracts;
14+
using UiPath.UIAutomationNext.API.Models;
15+
using UiPath.UIAutomationNext.Enums;
16+
using UiPath.CodedWorkflows.DescriptorIntegration;
17+
18+
namespace ConvertDifferentMultipleDateTypesToFixedDateFormat
19+
{
20+
public partial class CodedWorkflow : CodedWorkflowBase
21+
{
22+
public CodedWorkflow()
23+
{
24+
_ = new System.Type[]{typeof(UiPath.Mail.Activities.Api.IMailService), typeof(UiPath.Testing.API.ITestingService), typeof(UiPath.Core.Activities.API.ISystemService), typeof(UiPath.UIAutomationNext.API.Contracts.IUiAutomationAppService)};
25+
}
26+
27+
protected UiPath.Mail.Activities.Api.IMailService mail { get => serviceContainer.Resolve<UiPath.Mail.Activities.Api.IMailService>(); }
28+
29+
protected UiPath.Core.Activities.API.ISystemService system { get => serviceContainer.Resolve<UiPath.Core.Activities.API.ISystemService>(); }
30+
31+
protected UiPath.Testing.API.ITestingService testing { get => serviceContainer.Resolve<UiPath.Testing.API.ITestingService>(); }
32+
33+
protected UiPath.UIAutomationNext.API.Contracts.IUiAutomationAppService uiAutomation { get => serviceContainer.Resolve<UiPath.UIAutomationNext.API.Contracts.IUiAutomationAppService>(); }
34+
}
35+
}
36+
37+
namespace ConvertDifferentMultipleDateTypesToFixedDateFormat.ObjectRepository
38+
{
39+
public static class Descriptors
40+
{
41+
}
42+
}
43+
44+
namespace ConvertDifferentMultipleDateTypesToFixedDateFormat._Implementation
45+
{
46+
internal class ScreenDescriptorDefinition : IScreenDescriptorDefinition
47+
{
48+
public IScreenDescriptor Screen { get; set; }
49+
50+
public string Reference { get; set; }
51+
52+
public string DisplayName { get; set; }
53+
}
54+
55+
internal class ElementDescriptorDefinition : IElementDescriptorDefinition
56+
{
57+
public IScreenDescriptor Screen { get; set; }
58+
59+
public string Reference { get; set; }
60+
61+
public string DisplayName { get; set; }
62+
63+
public IElementDescriptor ParentElement { get; set; }
64+
65+
public IElementDescriptor Element { get; set; }
66+
}
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
["C:\\Users\\CatarinaValente\\Documents\\UiPath\\ConvertDifferentMultipleDateTypesToFixedDateFormat\\Main.xaml"]

0 commit comments

Comments
 (0)