Rename salesbook

This commit is contained in:
2025-06-26 10:08:21 +02:00
parent a34e673cd2
commit 3f2b7a6bb5
164 changed files with 267 additions and 262 deletions

View File

@@ -1,59 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"/>
<title>Template.Maui</title>
<base href="/"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
<link href="_content/Template.Shared/css/bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="_content/Template.Shared/css/bootstrap/bootstrap-icons.min.css" rel="stylesheet"/>
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet"/>
<link href="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="_content/Template.Shared/css/remixicon/remixicon.css"/>
<link rel="stylesheet" href="_content/Template.Shared/css/app.css"/>
<link rel="stylesheet" href="_content/Template.Shared/css/form.css"/>
<link rel="stylesheet" href="_content/Template.Shared/css/bottomSheet.css"/>
<link rel="stylesheet" href="_content/Template.Shared/css/default-theme.css"/>
<link rel="stylesheet" href="Template.Maui.styles.css"/>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
<div class="status-bar-safe-area"></div>
<div id="app">
<div class="spinner-container">
<span class="loader"></span>
</div>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webview.js" autostart="false"></script>
<script src="_content/Template.Shared/js/bootstrap/bootstrap.bundle.min.js"></script>
<!-- Add chart.js reference if chart components are used in your application. -->
<!--<script src="_content/Template.Shared/js/bootstrap/chart.umd.js" integrity="sha512-gQhCDsnnnUfaRzD8k1L5llCCV6O9HN09zClIzzeJ8OJ9MpGmIlCxm+pdCkqTwqJ4JcjbojFr79rl2F1mzcoLMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>-->
<!-- Add chartjs-plugin-datalabels.min.js reference if chart components with data label feature is used in your application. -->
<!--<script src="_content/Template.Shared/js/bootstrap/chartjs-plugin-datalabels.min.js" integrity="sha512-JPcRR8yFa8mmCsfrw4TNte1ZvF1e3+1SdGMslZvmrzDYxS69J7J49vkFL8u6u8PlPJK+H3voElBtUCzaXj+6ig==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>-->
<!-- Add sortable.js reference if SortableList component is used in your application. -->
<!--<script src="_content/Template.Shared/js/bootstrap/Sortable.min.js"></script>-->
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script src="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"></script>
<script src="_content/Template.Shared/js/main.js"></script>
<script src="_content/Template.Shared/js/calendar.js"></script>
<script src="_content/Template.Shared/js/alphaScroll.js"></script>
</body>
</html>

View File

@@ -1,6 +0,0 @@
using CommunityToolkit.Mvvm.Messaging.Messages;
using Template.Shared.Core.Dto;
namespace Template.Shared.Core.Messages.Activity.Copy;
public class CopyActivityMessage(ActivityDTO value) : ValueChangedMessage<ActivityDTO>(value);

File diff suppressed because one or more lines are too long

View File

@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls" xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls"
android:Application.WindowSoftInputModeAdjust="Resize" android:Application.WindowSoftInputModeAdjust="Resize"
x:Class="Template.Maui.App"> x:Class="salesbook.Maui.App">
<Application.Resources> <Application.Resources>
<ResourceDictionary> <ResourceDictionary>

View File

@@ -1,6 +1,6 @@
using CommunityToolkit.Mvvm.Messaging; using CommunityToolkit.Mvvm.Messaging;
namespace Template.Maui namespace salesbook.Maui
{ {
public partial class App : Application public partial class App : Application
{ {

View File

@@ -1,6 +1,6 @@
using Template.Shared.Core.Interface; using salesbook.Shared.Core.Interface;
namespace Template.Maui.Core.Services; namespace salesbook.Maui.Core.Services;
public class FormFactor : IFormFactor public class FormFactor : IFormFactor
{ {

View File

@@ -1,8 +1,8 @@
using SQLite; using SQLite;
using System.Linq.Expressions; using System.Linq.Expressions;
using Template.Shared.Core.Entity; using salesbook.Shared.Core.Entity;
namespace Template.Maui.Core.Services; namespace salesbook.Maui.Core.Services;
public class LocalDbService public class LocalDbService
{ {

View File

@@ -1,11 +1,11 @@
using AutoMapper; using AutoMapper;
using System.Linq.Expressions; using System.Linq.Expressions;
using Template.Shared.Core.Dto; using salesbook.Shared.Core.Dto;
using Template.Shared.Core.Entity; using salesbook.Shared.Core.Entity;
using Template.Shared.Core.Helpers.Enum; using salesbook.Shared.Core.Helpers.Enum;
using Template.Shared.Core.Interface; using salesbook.Shared.Core.Interface;
namespace Template.Maui.Core.Services; namespace salesbook.Maui.Core.Services;
public class ManageDataService(LocalDbService localDb, IMapper mapper) : IManageDataService public class ManageDataService(LocalDbService localDb, IMapper mapper) : IManageDataService
{ {

View File

@@ -1,6 +1,6 @@
using Template.Shared.Core.Interface; using salesbook.Shared.Core.Interface;
namespace Template.Maui.Core.Services; namespace salesbook.Maui.Core.Services;
public class NetworkService : INetworkService public class NetworkService : INetworkService
{ {

View File

@@ -1,7 +1,7 @@
using Template.Shared.Core.Helpers; using salesbook.Shared.Core.Helpers;
using Template.Shared.Core.Interface; using salesbook.Shared.Core.Interface;
namespace Template.Maui.Core.Services; namespace salesbook.Maui.Core.Services;
public class SyncDbService(IIntegryApiService integryApiService, LocalDbService localDb) : ISyncDbService public class SyncDbService(IIntegryApiService integryApiService, LocalDbService localDb) : ISyncDbService
{ {

View File

@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Template.Maui" xmlns:local="clr-namespace:salesbook.Maui"
xmlns:shared="clr-namespace:Template.Shared;assembly=Template.Shared" xmlns:shared="clr-namespace:salesbook.Shared;assembly=salesbook.Shared"
x:Class="Template.Maui.MainPage" x:Class="salesbook.Maui.MainPage"
BackgroundColor="{DynamicResource PageBackgroundColor}"> BackgroundColor="{DynamicResource PageBackgroundColor}">
<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html"> <BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">

View File

@@ -1,7 +1,7 @@
using CommunityToolkit.Mvvm.Messaging; using CommunityToolkit.Mvvm.Messaging;
using Template.Shared.Core.Messages.Back; using salesbook.Shared.Core.Messages.Back;
namespace Template.Maui namespace salesbook.Maui
{ {
public partial class MainPage : ContentPage public partial class MainPage : ContentPage
{ {

View File

@@ -5,17 +5,17 @@ using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using MudBlazor.Services; using MudBlazor.Services;
using MudExtensions.Services; using MudExtensions.Services;
using Template.Maui.Core.Services; using salesbook.Maui.Core.Services;
using Template.Shared; using salesbook.Shared;
using Template.Shared.Core.Helpers; using salesbook.Shared.Core.Helpers;
using Template.Shared.Core.Interface; using salesbook.Shared.Core.Interface;
using Template.Shared.Core.Messages.Activity; using salesbook.Shared.Core.Messages.Activity;
using Template.Shared.Core.Messages.Activity.Copy; using salesbook.Shared.Core.Messages.Activity.Copy;
using Template.Shared.Core.Messages.Activity.New; using salesbook.Shared.Core.Messages.Activity.New;
using Template.Shared.Core.Messages.Back; using salesbook.Shared.Core.Messages.Back;
using Template.Shared.Core.Services; using salesbook.Shared.Core.Services;
namespace Template.Maui namespace salesbook.Maui
{ {
public static class MauiProgram public static class MauiProgram
{ {

View File

@@ -1,7 +1,7 @@
using Android.App; using Android.App;
using Android.Content.PM; using Android.Content.PM;
namespace Template.Maui namespace salesbook.Maui
{ {
[Activity(Theme = "@style/Maui.SplashTheme", [Activity(Theme = "@style/Maui.SplashTheme",
MainLauncher = true, MainLauncher = true,

View File

@@ -1,7 +1,7 @@
using Android.App; using Android.App;
using Android.Runtime; using Android.Runtime;
namespace Template.Maui namespace salesbook.Maui
{ {
[Application] [Application]
public class MainApplication : MauiApplication public class MainApplication : MauiApplication

View File

@@ -1,7 +1,7 @@
using Foundation; using Foundation;
using Template.Maui; using salesbook.Maui;
namespace Template.Maui namespace salesbook.Maui
{ {
[Register("AppDelegate")] [Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate public class AppDelegate : MauiUIApplicationDelegate

View File

@@ -1,7 +1,7 @@
using ObjCRuntime; using ObjCRuntime;
using UIKit; using UIKit;
namespace Template.Maui namespace salesbook.Maui
{ {
public class Program public class Program
{ {

View File

@@ -1,6 +1,6 @@
using Foundation; using Foundation;
namespace Template.Maui namespace salesbook.Maui
{ {
[Register("AppDelegate")] [Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate public class AppDelegate : MauiUIApplicationDelegate

View File

@@ -1,6 +1,6 @@
using UIKit; using UIKit;
namespace Template.Maui namespace salesbook.Maui
{ {
public class Program public class Program
{ {

View File

Before

Width:  |  Height:  |  Size: 201 B

After

Width:  |  Height:  |  Size: 201 B

View File

Before

Width:  |  Height:  |  Size: 529 B

After

Width:  |  Height:  |  Size: 529 B

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -15,7 +15,7 @@
<!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> --> <!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<RootNamespace>Template.Maui</RootNamespace> <RootNamespace>salesbook.Maui</RootNamespace>
<UseMaui>true</UseMaui> <UseMaui>true</UseMaui>
<SingleProject>true</SingleProject> <SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
@@ -26,7 +26,7 @@
<ApplicationTitle>salesbook</ApplicationTitle> <ApplicationTitle>salesbook</ApplicationTitle>
<!-- App Identifier --> <!-- App Identifier -->
<ApplicationId>it.integry.template.maui</ApplicationId> <ApplicationId>it.integry.salesbook</ApplicationId>
<!-- Versions --> <!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
@@ -134,7 +134,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Template.Shared\Template.Shared.csproj" /> <ProjectReference Include="..\salesbook.Shared\salesbook.Shared.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"/>
<title>salesbook.Maui</title>
<base href="/"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
<link href="_content/salesbook.Shared/css/bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="_content/salesbook.Shared/css/bootstrap/bootstrap-icons.min.css" rel="stylesheet"/>
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet"/>
<link href="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="_content/salesbook.Shared/css/remixicon/remixicon.css"/>
<link rel="stylesheet" href="_content/salesbook.Shared/css/app.css"/>
<link rel="stylesheet" href="_content/salesbook.Shared/css/form.css"/>
<link rel="stylesheet" href="_content/salesbook.Shared/css/bottomSheet.css"/>
<link rel="stylesheet" href="_content/salesbook.Shared/css/default-theme.css"/>
<link rel="stylesheet" href="salesbook.Maui.styles.css"/>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
<div class="status-bar-safe-area"></div>
<div id="app">
<div class="spinner-container">
<span class="loader"></span>
</div>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webview.js" autostart="false"></script>
<script src="_content/salesbook.Shared/js/bootstrap/bootstrap.bundle.min.js"></script>
<!-- Add chart.js reference if chart components are used in your application. -->
<!--<script src="_content/salesbook.Shared/js/bootstrap/chart.umd.js" integrity="sha512-gQhCDsnnnUfaRzD8k1L5llCCV6O9HN09zClIzzeJ8OJ9MpGmIlCxm+pdCkqTwqJ4JcjbojFr79rl2F1mzcoLMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>-->
<!-- Add chartjs-plugin-datalabels.min.js reference if chart components with data label feature is used in your application. -->
<!--<script src="_content/salesbook.Shared/js/bootstrap/chartjs-plugin-datalabels.min.js" integrity="sha512-JPcRR8yFa8mmCsfrw4TNte1ZvF1e3+1SdGMslZvmrzDYxS69J7J49vkFL8u6u8PlPJK+H3voElBtUCzaXj+6ig==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>-->
<!-- Add sortable.js reference if SortableList component is used in your application. -->
<!--<script src="_content/salesbook.Shared/js/bootstrap/Sortable.min.js"></script>-->
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script src="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"></script>
<script src="_content/salesbook.Shared/js/main.js"></script>
<script src="_content/salesbook.Shared/js/calendar.js"></script>
<script src="_content/salesbook.Shared/js/alphaScroll.js"></script>
</body>
</html>

View File

@@ -1,6 +1,6 @@
@using System.Globalization @using System.Globalization
@using CommunityToolkit.Mvvm.Messaging @using CommunityToolkit.Mvvm.Messaging
@using Template.Shared.Core.Messages.Back @using salesbook.Shared.Core.Messages.Back
@inherits LayoutComponentBase @inherits LayoutComponentBase
@inject IJSRuntime JS @inject IJSRuntime JS
@inject IMessenger Messenger @inject IMessenger Messenger

View File

@@ -1,8 +1,8 @@
@using CommunityToolkit.Mvvm.Messaging @using CommunityToolkit.Mvvm.Messaging
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Messages.Activity.Copy @using salesbook.Shared.Core.Messages.Activity.Copy
@using Template.Shared.Core.Messages.Activity.New @using salesbook.Shared.Core.Messages.Activity.New
@inject IDialogService Dialog @inject IDialogService Dialog
@inject IMessenger Messenger @inject IMessenger Messenger
@inject CopyActivityService CopyActivityService @inject CopyActivityService CopyActivityService

View File

@@ -1,4 +1,4 @@
@using Template.Shared.Components.Layout.Spinner @using salesbook.Shared.Components.Layout.Spinner
<MudOverlay Visible="VisibleOverlay" LightBackground="true"> <MudOverlay Visible="VisibleOverlay" LightBackground="true">
@if (SuccessAnimation) @if (SuccessAnimation)
{ {

View File

@@ -1,12 +1,12 @@
@page "/Calendar" @page "/Calendar"
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
@using Template.Shared.Components.SingleElements @using salesbook.Shared.Components.SingleElements
@using Template.Shared.Components.Layout.Spinner @using salesbook.Shared.Components.Layout.Spinner
@using Template.Shared.Components.SingleElements.BottomSheet @using salesbook.Shared.Components.SingleElements.BottomSheet
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Messages.Activity.New @using salesbook.Shared.Core.Messages.Activity.New
@inject IManageDataService ManageData @inject IManageDataService ManageData
@inject IJSRuntime JS @inject IJSRuntime JS
@inject NewActivityService NewActivity @inject NewActivityService NewActivity
@@ -162,7 +162,7 @@
} }
else else
{ {
<NoDataAvailable Text="Nessuna attività trovata" ImageSource="_content/Template.Shared/images/undraw_file-search_cbur.svg"/> <NoDataAvailable Text="Nessuna attività trovata" ImageSource="_content/salesbook.Shared/images/undraw_file-search_cbur.svg"/>
} }
</div> </div>

View File

@@ -1,5 +1,5 @@
@page "/" @page "/"
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@attribute [Authorize] @attribute [Authorize]
@inject IFormFactor FormFactor @inject IFormFactor FormFactor
@inject INetworkService NetworkService @inject INetworkService NetworkService

View File

@@ -1,6 +1,6 @@
@page "/login" @page "/login"
@using Template.Shared.Components.Layout.Spinner @using salesbook.Shared.Components.Layout.Spinner
@using Template.Shared.Core.Services @using salesbook.Shared.Core.Services
@inject IUserAccountService UserAccountService @inject IUserAccountService UserAccountService
@inject AppAuthenticationStateProvider AuthenticationStateProvider @inject AppAuthenticationStateProvider AuthenticationStateProvider
@@ -12,7 +12,7 @@ else
{ {
<div class="login-page"> <div class="login-page">
<div class="container container-top-logo"> <div class="container container-top-logo">
<img src="_content/Template.Shared/images/salesbook-marchio_vers.positiva.svg" class="logo" alt="sales book"> <img src="_content/salesbook.Shared/images/salesbook-marchio_vers.positiva.svg" class="logo" alt="sales book">
</div> </div>
<div class="container container-login"> <div class="container container-login">
<div class="login-form-container"> <div class="login-form-container">
@@ -35,7 +35,7 @@ else
<div class="my-4 login-footer"> <div class="my-4 login-footer">
<span>Powered by</span> <span>Powered by</span>
<img src="_content/Template.Shared/images/logoIntegry.svg" class="img-fluid" alt="Integry"> <img src="_content/salesbook.Shared/images/logoIntegry.svg" class="img-fluid" alt="Integry">
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,7 +1,7 @@
@page "/Notifications" @page "/Notifications"
@attribute [Authorize] @attribute [Authorize]
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
@using Template.Shared.Components.SingleElements @using salesbook.Shared.Components.SingleElements
<HeaderLayout Title="Notifiche" /> <HeaderLayout Title="Notifiche" />

View File

@@ -1,9 +1,9 @@
@page "/PersonalInfo" @page "/PersonalInfo"
@attribute [Authorize] @attribute [Authorize]
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
@using Template.Shared.Core.Authorization.Enum @using salesbook.Shared.Core.Authorization.Enum
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@using Template.Shared.Core.Services @using salesbook.Shared.Core.Services
@inject AppAuthenticationStateProvider AuthenticationStateProvider @inject AppAuthenticationStateProvider AuthenticationStateProvider
@inject INetworkService NetworkService @inject INetworkService NetworkService
@inject IFormFactor FormFactor @inject IFormFactor FormFactor

View File

@@ -1,6 +1,6 @@
@page "/settings" @page "/settings"
@page "/settings/{BackTo}" @page "/settings/{BackTo}"
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
<HeaderLayout BackTo="@BackTo" Back="true" Title="Impostazioni"/> <HeaderLayout BackTo="@BackTo" Back="true" Title="Impostazioni"/>

View File

@@ -1,7 +1,7 @@
@page "/sync" @page "/sync"
@page "/sync/{DateFilter}" @page "/sync/{DateFilter}"
@using Template.Shared.Components.Layout.Spinner @using salesbook.Shared.Components.Layout.Spinner
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@inject ISyncDbService syncDb @inject ISyncDbService syncDb
@inject IManageDataService manageData @inject IManageDataService manageData

View File

@@ -1,9 +1,9 @@
@page "/User/{CodAnag}" @page "/User/{CodAnag}"
@attribute [Authorize] @attribute [Authorize]
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@using Template.Shared.Components.Layout.Spinner @using salesbook.Shared.Components.Layout.Spinner
@inject IManageDataService ManageData @inject IManageDataService ManageData
<HeaderLayout BackTo="Indietro" Back="true" BackOnTop="true" Title="" ShowProfile="false"/> <HeaderLayout BackTo="Indietro" Back="true" BackOnTop="true" Title="" ShowProfile="false"/>

View File

@@ -1,8 +1,8 @@
@page "/Users" @page "/Users"
@attribute [Authorize] @attribute [Authorize]
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@inject IManageDataService ManageData @inject IManageDataService ManageData
<HeaderLayout Title="Contatti"/> <HeaderLayout Title="Contatti"/>

View File

@@ -1,4 +1,4 @@
@using Template.Shared.Components.SingleElements @using salesbook.Shared.Components.SingleElements
@inject NavigationManager NavigationManager @inject NavigationManager NavigationManager
<ErrorBoundary @ref="ErrorBoundary"> <ErrorBoundary @ref="ErrorBoundary">

View File

@@ -1,7 +1,7 @@
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Helpers.Enum @using salesbook.Shared.Core.Helpers.Enum
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@inject IManageDataService manageData @inject IManageDataService manageData
<div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div> <div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div>

View File

@@ -1,7 +1,7 @@
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Helpers.Enum @using salesbook.Shared.Core.Helpers.Enum
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@inject IManageDataService manageData @inject IManageDataService manageData
<div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div> <div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div>

View File

@@ -1,6 +1,6 @@
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@inject IManageDataService ManageData @inject IManageDataService ManageData
<div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div> <div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div>

View File

@@ -1,6 +1,6 @@
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Helpers.Enum @using salesbook.Shared.Core.Helpers.Enum
@inject IDialogService Dialog @inject IDialogService Dialog
<div class="activity-card @Activity.Category.ConvertToHumanReadable()" @onclick="OpenActivity"> <div class="activity-card @Activity.Category.ConvertToHumanReadable()" @onclick="OpenActivity">

View File

@@ -1,4 +1,4 @@
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
<div class="contact-card"> <div class="contact-card">
<div class="contact-left-section"> <div class="contact-left-section">

View File

@@ -1,5 +1,5 @@
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@inject IManageDataService ManageData @inject IManageDataService ManageData
<div class="user-card-card"> <div class="user-card-card">

View File

@@ -1,4 +1,4 @@
@using Template.Shared.Core.Services @using salesbook.Shared.Core.Services
@inject AppAuthenticationStateProvider AuthenticationStateProvider @inject AppAuthenticationStateProvider AuthenticationStateProvider
<div class="container container-modal"> <div class="container container-modal">

View File

@@ -1,12 +1,12 @@
@using System.Globalization @using System.Globalization
@using CommunityToolkit.Mvvm.Messaging @using CommunityToolkit.Mvvm.Messaging
@using Template.Shared.Core.Dto @using salesbook.Shared.Core.Dto
@using Template.Shared.Components.Layout @using salesbook.Shared.Components.Layout
@using Template.Shared.Core.Entity @using salesbook.Shared.Core.Entity
@using Template.Shared.Core.Interface @using salesbook.Shared.Core.Interface
@using Template.Shared.Components.Layout.Overlay @using salesbook.Shared.Components.Layout.Overlay
@using Template.Shared.Components.SingleElements.BottomSheet @using salesbook.Shared.Components.SingleElements.BottomSheet
@using Template.Shared.Core.Messages.Activity.Copy @using salesbook.Shared.Core.Messages.Activity.Copy
@inject IManageDataService ManageData @inject IManageDataService ManageData
@inject INetworkService NetworkService @inject INetworkService NetworkService
@inject IIntegryApiService IntegryApiService @inject IIntegryApiService IntegryApiService

View File

@@ -1,4 +1,4 @@
namespace Template.Shared.Core.Authorization.Enum; namespace salesbook.Shared.Core.Authorization.Enum;
public enum KeyGroupEnum public enum KeyGroupEnum
{ {

View File

@@ -1,7 +1,7 @@
using Template.Shared.Core.Entity; using salesbook.Shared.Core.Entity;
using Template.Shared.Core.Helpers.Enum; using salesbook.Shared.Core.Helpers.Enum;
namespace Template.Shared.Core.Dto; namespace salesbook.Shared.Core.Dto;
public class ActivityDTO : StbActivity public class ActivityDTO : StbActivity
{ {

View File

@@ -1,7 +1,7 @@
using Template.Shared.Core.Helpers; using salesbook.Shared.Core.Helpers;
using Template.Shared.Core.Helpers.Enum; using salesbook.Shared.Core.Helpers.Enum;
namespace Template.Shared.Core.Dto; namespace salesbook.Shared.Core.Dto;
public class FilterActivityDTO public class FilterActivityDTO
{ {

View File

@@ -1,7 +1,7 @@
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using Template.Shared.Core.Entity; using salesbook.Shared.Core.Entity;
namespace Template.Shared.Core.Dto; namespace salesbook.Shared.Core.Dto;
public class SettingsResponseDTO public class SettingsResponseDTO
{ {

View File

@@ -1,7 +1,7 @@
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using Template.Shared.Core.Entity; using salesbook.Shared.Core.Entity;
namespace Template.Shared.Core.Dto; namespace salesbook.Shared.Core.Dto;
public class TaskSyncResponseDTO public class TaskSyncResponseDTO
{ {

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("anag_clie")] [Table("anag_clie")]
public class AnagClie public class AnagClie

View File

@@ -1,7 +1,7 @@
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using SQLite; using SQLite;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("jtb_comt")] [Table("jtb_comt")]
public class JtbComt public class JtbComt

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("ptb_pros")] [Table("ptb_pros")]
public class PtbPros public class PtbPros

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("ptb_pros_rif")] [Table("ptb_pros_rif")]
public class PtbProsRif public class PtbProsRif

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("stb_activity")] [Table("stb_activity")]
public class StbActivity public class StbActivity

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("stb_activity_result")] [Table("stb_activity_result")]
public class StbActivityResult public class StbActivityResult

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("stb_activity_type")] [Table("stb_activity_type")]
public class StbActivityType public class StbActivityType

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("stb_user")] [Table("stb_user")]
public class StbUser public class StbUser

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("vtb_clie_pers_rif")] [Table("vtb_clie_pers_rif")]
public class VtbCliePersRif public class VtbCliePersRif

View File

@@ -1,7 +1,7 @@
using SQLite; using SQLite;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
namespace Template.Shared.Core.Entity; namespace salesbook.Shared.Core.Entity;
[Table("vtb_dest")] [Table("vtb_dest")]
public class VtbDest public class VtbDest

View File

@@ -1,6 +1,6 @@
using Template.Shared.Core.Helpers.Enum; using salesbook.Shared.Core.Helpers.Enum;
namespace Template.Shared.Core.Helpers; namespace salesbook.Shared.Core.Helpers;
public static class ActivityCategoryHelper public static class ActivityCategoryHelper
{ {

View File

@@ -1,4 +1,4 @@
namespace Template.Shared.Core.Helpers.Enum; namespace salesbook.Shared.Core.Helpers.Enum;
public enum ActivityCategoryEnum public enum ActivityCategoryEnum
{ {

View File

@@ -1,4 +1,4 @@
namespace Template.Shared.Core.Helpers; namespace salesbook.Shared.Core.Helpers;
class IconConstants class IconConstants
{ {

View File

@@ -1,6 +1,6 @@
using Template.Shared.Core.Authorization.Enum; using salesbook.Shared.Core.Authorization.Enum;
namespace Template.Shared.Core.Helpers; namespace salesbook.Shared.Core.Helpers;
public static class KeyGroupHelper public static class KeyGroupHelper
{ {

View File

@@ -1,8 +1,8 @@
using AutoMapper; using AutoMapper;
using Template.Shared.Core.Dto; using salesbook.Shared.Core.Dto;
using Template.Shared.Core.Entity; using salesbook.Shared.Core.Entity;
namespace Template.Shared.Core.Helpers; namespace salesbook.Shared.Core.Helpers;
public class MappingProfile : Profile public class MappingProfile : Profile
{ {

Some files were not shown because too many files have changed in this diff Show More