-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ongoing work
- Loading branch information
Showing
26 changed files
with
214 additions
and
341 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
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
22 changes: 22 additions & 0 deletions
22
DexieNETCloudSample/Aministration/AdministrationService.State.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,22 @@ | ||
using RxBlazorLightCore; | ||
|
||
namespace DexieNETCloudSample.Aministration | ||
{ | ||
public partial class AdministrationService | ||
{ | ||
public Func<IStateCommandAsync, Task> GetUsers(CloudKeyData value) => async c => | ||
{ | ||
await DoGetUsers(value, c.CancellationToken); | ||
}; | ||
|
||
public Func<IStateCommandAsync, Task> DeleteUser => async c => | ||
{ | ||
await DoDeleteUser(c.CancellationToken); | ||
}; | ||
|
||
public bool CanDeleteUser() | ||
{ | ||
return DBService.UserLogin.HasValue(); | ||
} | ||
} | ||
} |
31 changes: 0 additions & 31 deletions
31
DexieNETCloudSample/Aministration/AdministrationService.Transformers.cs
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.