-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project and workflow settings
- Loading branch information
Showing
23 changed files
with
628 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/Apps/Corathing.Organizer.UnitTests/Helpers/FileHelperUnitTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Corathing.Organizer.UnitTests.Helpers; | ||
|
||
[TestClass] | ||
public class FileHelperUnitTest | ||
{ | ||
[TestMethod] | ||
public void GenerateUniqueFolder_TestGuid(Guid guid) | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Apps/Corathing.Organizer/Models/ProjectSettingsContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
using CommunityToolkit.Mvvm.ComponentModel; | ||
|
||
using Corathing.Contracts.Bases; | ||
|
||
namespace Corathing.Organizer.Models; | ||
|
||
public partial class ProjectSettingsContext : ObservableObject | ||
{ | ||
#region Readonly Properties | ||
private IServiceProvider _services; | ||
#endregion | ||
public Guid ProjectId { get; set; } | ||
public Guid OriginalProjectId { get; set; } | ||
public bool IsAdded { get; set; } | ||
public bool IsRemoved { get; set; } | ||
public bool IsDuplicated { get; set; } | ||
public ProjectState ProjectState { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the title. | ||
/// </summary> | ||
/// <value>The title.</value> | ||
[ObservableProperty] | ||
private string _name = "My Project"; | ||
|
||
public ProjectSettingsContext(IServiceProvider services) | ||
{ | ||
_services = services; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
src/Apps/Corathing.Organizer/Services/NavigationService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
using Corathing.Contracts.Services; | ||
|
||
namespace Corathing.Organizer.Services; | ||
|
||
public class NavigationService : INavigationService | ||
{ | ||
public bool GoBack() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool Navigate(Type pageType) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool Navigate(Type pageType, object? dataContext) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool Navigate(string pageIdOrTargetTag) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool Navigate(string pageIdOrTargetTag, object? dataContext) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool NavigateWithHierarchy(Type pageType) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool NavigateWithHierarchy(Type pageType, object? dataContext) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} |
Oops, something went wrong.