diff --git a/Core/Interfaces/IAccountTypeDom.cs b/Core/Interfaces/IAccountTypeDom.cs new file mode 100644 index 0000000..7408f8f --- /dev/null +++ b/Core/Interfaces/IAccountTypeDom.cs @@ -0,0 +1,10 @@ +using Domain.Entities; + +namespace Core.Interfaces +{ + public interface IAccountTypeDom + { + Task> GetAllAsync(); + Task GetByNameAsync(string name); + } +} \ No newline at end of file diff --git a/Core/Services/AccountTypeService.cs b/Core/Services/AccountTypeService.cs new file mode 100644 index 0000000..f69f6e5 --- /dev/null +++ b/Core/Services/AccountTypeService.cs @@ -0,0 +1,40 @@ +using Core.Interfaces; +using Domain.Entities; +using Models.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; + +namespace Core.Services +{ + public class AccountTypeService : IAccountTypeDom + { + private readonly PhSAccountTypeRepository _contract; + + public AccountTypeService(PhSAccountTypeRepository repository) + { + _contract = repository ?? throw new ArgumentNullException(nameof(repository)); + } + + public async Task> GetAllAsync() + { + try + { + return await _contract.GetAllAsync(); + } + catch (Exception ex) + { + var methodName = MethodBase.GetCurrentMethod()?.Name ?? "UnknownMethod"; + throw new Exception($"{methodName} Message: {ex.Message}", ex); + } + } + + public Task GetByNameAsync(string name) + { + throw new NotImplementedException(); + } + } +} diff --git a/Domain/Entities/EAccountType.cs b/Domain/Entities/EAccountType.cs new file mode 100644 index 0000000..ea727c5 --- /dev/null +++ b/Domain/Entities/EAccountType.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Domain.Entities +{ + public class EAccountType + { + public int Id { get; set; } + + public string Name { get; set; } = null!; + + public string? Description { get; set; } + + public decimal? CreditLimit { get; set; } + + public DateTime? CreationDate { get; set; } + + public virtual ICollection Customers { get; set; } = new List(); + } +} diff --git a/Domain/Entities/ECustomer.cs b/Domain/Entities/ECustomer.cs new file mode 100644 index 0000000..ec1e492 --- /dev/null +++ b/Domain/Entities/ECustomer.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Domain.Entities +{ + public class ECustomer + { + public int Id { get; set; } + + public string? Name { get; set; } + + public string? BusinessName { get; set; } + + public int? AccounttypesId { get; set; } + + public int? TaxConditionId { get; set; } + + public bool HasCreditAccount { get; set; } + + public decimal CreditLimit { get; set; } + + public bool Active { get; set; } + + public string? ExternalCode { get; set; } + + public virtual EAccountType? Accounttypes { get; set; } + + public virtual ICollection ECustomerAddresses { get; set; } = new List(); + + public virtual ICollection ECustomerDocuments { get; set; } = new List(); + + //public virtual ICollection PhSQuoteHeaders { get; set; } = new List(); + } +} diff --git a/Domain/Entities/ECustomerAddress.cs b/Domain/Entities/ECustomerAddress.cs new file mode 100644 index 0000000..1ede4c3 --- /dev/null +++ b/Domain/Entities/ECustomerAddress.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Domain.Entities +{ + public class ECustomerAddress + { + public int Id { get; set; } + + public int? CustomersId { get; set; } + + public string? BusinessName { get; set; } + + public string? Streetaddress1 { get; set; } + + public string? Streetaddress2 { get; set; } + + public string? City { get; set; } + + public string? Stateprovince { get; set; } + + public string? Postalcode { get; set; } + + public string? Country { get; set; } + + public decimal? Latitude { get; set; } + + public decimal? Longitude { get; set; } + + public string? Phonenumber { get; set; } + + public string? Email { get; set; } + + public string? Notes { get; set; } + + public virtual ECustomer? Customers { get; set; } + } + +} diff --git a/Domain/Entities/ECustomerDocument.cs b/Domain/Entities/ECustomerDocument.cs new file mode 100644 index 0000000..81df471 --- /dev/null +++ b/Domain/Entities/ECustomerDocument.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Domain.Entities +{ + public class ECustomerDocument + { + public int Id { get; set; } + + public int CustomersId { get; set; } + + public int DocumenttypesId { get; set; } + + public string DocumentNumber { get; set; } = null!; + + public DateOnly? IssueDate { get; set; } + + public DateOnly? ExpiryDate { get; set; } + + public virtual ECustomer Customers { get; set; } = null!; + + public virtual EDocumentType Documenttypes { get; set; } = null!; + } +} diff --git a/Domain/Entities/EDocumentType.cs b/Domain/Entities/EDocumentType.cs new file mode 100644 index 0000000..d8c72cd --- /dev/null +++ b/Domain/Entities/EDocumentType.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Domain.Entities +{ + public class EDocumentType + { + public int Id { get; set; } + + public string? Code { get; set; } + + public string Name { get; set; } = null!; + + public string? Description { get; set; } + + public virtual ICollection PhSCustomerDocuments { get; set; } = new List(); + } +} diff --git a/Models/Interfaces/IGenericRepository.cs b/Models/Interfaces/IGenericRepository.cs new file mode 100644 index 0000000..0504645 --- /dev/null +++ b/Models/Interfaces/IGenericRepository.cs @@ -0,0 +1,11 @@ +namespace Models.Interfaces +{ + public interface IGenericRepository where T : class + { + Task GetByIdAsync(int id); + Task> GetAllAsync(); + Task AddAsync(T entity); + void Update(T entity); + void Delete(T entity); + } +} diff --git a/Models/Interfaces/IPhSAccountTypeRepository.cs b/Models/Interfaces/IPhSAccountTypeRepository.cs new file mode 100644 index 0000000..a6c5095 --- /dev/null +++ b/Models/Interfaces/IPhSAccountTypeRepository.cs @@ -0,0 +1,8 @@ +using Domain.Entities; +namespace Models.Interfaces +{ + public interface IPhSAccountTypeRepository : IGenericRepository + { + Task GetByNameAsync(string name); + } +} diff --git a/Models/Models/PhOhTaxCondition.cs b/Models/Models/PhOhTaxCondition.cs new file mode 100644 index 0000000..3a3a328 --- /dev/null +++ b/Models/Models/PhOhTaxCondition.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhOhTaxCondition +{ + public int Id { get; set; } + + public string Description { get; set; } = null!; + + public string CmpClase { get; set; } = null!; +} diff --git a/Models/Models/PhSAccountType.cs b/Models/Models/PhSAccountType.cs new file mode 100644 index 0000000..846c082 --- /dev/null +++ b/Models/Models/PhSAccountType.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSAccountType +{ + public int Id { get; set; } + + public string Name { get; set; } = null!; + + public string? Description { get; set; } + + public decimal? CreditLimit { get; set; } + + public DateTime? CreationDate { get; set; } + + public virtual ICollection PhSCustomers { get; set; } = new List(); +} diff --git a/Models/Models/PhSBusinessUnit.cs b/Models/Models/PhSBusinessUnit.cs new file mode 100644 index 0000000..942ba4b --- /dev/null +++ b/Models/Models/PhSBusinessUnit.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSBusinessUnit +{ + public int Id { get; set; } + + public string? Name { get; set; } + + public string? Description { get; set; } + + public string? Manager { get; set; } + + public virtual ICollection PhSProducts { get; set; } = new List(); + + public virtual ICollection PhSQuoteHeaders { get; set; } = new List(); +} diff --git a/Models/Models/PhSCustomer.cs b/Models/Models/PhSCustomer.cs new file mode 100644 index 0000000..503ad27 --- /dev/null +++ b/Models/Models/PhSCustomer.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSCustomer +{ + public int Id { get; set; } + + public string? Name { get; set; } + + public string? BusinessName { get; set; } + + public int? AccounttypesId { get; set; } + + public int? TaxConditionId { get; set; } + + public bool HasCreditAccount { get; set; } + + public decimal CreditLimit { get; set; } + + public bool Active { get; set; } + + public string? ExternalCode { get; set; } + + public virtual PhSAccountType? Accounttypes { get; set; } + + public virtual ICollection PhSCustomerAddresses { get; set; } = new List(); + + public virtual ICollection PhSCustomerDocuments { get; set; } = new List(); + + public virtual ICollection PhSQuoteHeaders { get; set; } = new List(); +} diff --git a/Models/Models/PhSCustomerAddress.cs b/Models/Models/PhSCustomerAddress.cs new file mode 100644 index 0000000..0cd815e --- /dev/null +++ b/Models/Models/PhSCustomerAddress.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSCustomerAddress +{ + public int Id { get; set; } + + public int? CustomersId { get; set; } + + public string? BusinessName { get; set; } + + public string? Streetaddress1 { get; set; } + + public string? Streetaddress2 { get; set; } + + public string? City { get; set; } + + public string? Stateprovince { get; set; } + + public string? Postalcode { get; set; } + + public string? Country { get; set; } + + public decimal? Latitude { get; set; } + + public decimal? Longitude { get; set; } + + public string? Phonenumber { get; set; } + + public string? Email { get; set; } + + public string? Notes { get; set; } + + public virtual PhSCustomer? Customers { get; set; } +} diff --git a/Models/Models/PhSCustomerDocument.cs b/Models/Models/PhSCustomerDocument.cs new file mode 100644 index 0000000..ccd60f9 --- /dev/null +++ b/Models/Models/PhSCustomerDocument.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSCustomerDocument +{ + public int Id { get; set; } + + public int CustomersId { get; set; } + + public int DocumenttypesId { get; set; } + + public string DocumentNumber { get; set; } = null!; + + public DateOnly? IssueDate { get; set; } + + public DateOnly? ExpiryDate { get; set; } + + public virtual PhSCustomer Customers { get; set; } = null!; + + public virtual PhSDocumentType Documenttypes { get; set; } = null!; +} diff --git a/Models/Models/PhSDocumentType.cs b/Models/Models/PhSDocumentType.cs new file mode 100644 index 0000000..511ea3f --- /dev/null +++ b/Models/Models/PhSDocumentType.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSDocumentType +{ + public int Id { get; set; } + + public string? Code { get; set; } + + public string Name { get; set; } = null!; + + public string? Description { get; set; } + + public virtual ICollection PhSCustomerDocuments { get; set; } = new List(); +} diff --git a/Models/Models/PhSProduct.cs b/Models/Models/PhSProduct.cs new file mode 100644 index 0000000..9d795c0 --- /dev/null +++ b/Models/Models/PhSProduct.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSProduct +{ + public int Id { get; set; } + + public int? BusinessunitsId { get; set; } + + public virtual PhSBusinessUnit? Businessunits { get; set; } + + public virtual ICollection PhSQuoteDetails { get; set; } = new List(); +} diff --git a/Models/Models/PhSQuoteDetail.cs b/Models/Models/PhSQuoteDetail.cs new file mode 100644 index 0000000..5a5acb1 --- /dev/null +++ b/Models/Models/PhSQuoteDetail.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSQuoteDetail +{ + public int Id { get; set; } + + public int? QuoteheadersId { get; set; } + + public int? ProductsId { get; set; } + + public virtual PhSProduct? Products { get; set; } + + public virtual PhSQuoteHeader? Quoteheaders { get; set; } +} diff --git a/Models/Models/PhSQuoteHeader.cs b/Models/Models/PhSQuoteHeader.cs new file mode 100644 index 0000000..0f26cbb --- /dev/null +++ b/Models/Models/PhSQuoteHeader.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; + +namespace Models.Models; + +public partial class PhSQuoteHeader +{ + public int Id { get; set; } + + public string? TicketId { get; set; } + + public int? BusinessunitsId { get; set; } + + public int? CustomersId { get; set; } + + public virtual PhSBusinessUnit? Businessunits { get; set; } + + public virtual PhSCustomer? Customers { get; set; } + + public virtual ICollection PhSQuoteDetails { get; set; } = new List(); +} diff --git a/Models/Models/PhronCareOperationsHubContext.cs b/Models/Models/PhronCareOperationsHubContext.cs index 652089b..8f84b75 100644 --- a/Models/Models/PhronCareOperationsHubContext.cs +++ b/Models/Models/PhronCareOperationsHubContext.cs @@ -15,26 +15,61 @@ public partial class PhronCareOperationsHubContext : DbContext { } + public virtual DbSet PhOhTaxConditions { get; set; } + public virtual DbSet PhOhTickets { get; set; } + public virtual DbSet PhSAccountTypes { get; set; } + + public virtual DbSet PhSBusinessUnits { get; set; } + + public virtual DbSet PhSCustomers { get; set; } + + public virtual DbSet PhSCustomerAddresses { get; set; } + + public virtual DbSet PhSCustomerDocuments { get; set; } + + public virtual DbSet PhSDocumentTypes { get; set; } + + public virtual DbSet PhSProducts { get; set; } + + public virtual DbSet PhSQuoteDetails { get; set; } + + public virtual DbSet PhSQuoteHeaders { get; set; } + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) #region VERSION DOCKER { - if (!optionsBuilder.IsConfigured) - { - // Dejarlo vacío para usar la configuración externa desde Program.cs o Startup.cs - } + if (!optionsBuilder.IsConfigured) + { + // Dejarlo vacío para usar la configuración externa desde Program.cs o Startup.cs + } } #endregion - // => optionsBuilder.UseSqlServer("Server=ROG-\\SQLEXPRESS;Database=phronCare_OperationsHub;Integrated Security=True;TrustServerCertificate=True;MultipleActiveResultSets=True;"); + // => optionsBuilder.UseSqlServer("data source=srv01.saludlab.com.ar,39458;initial catalog=phronCare_OperationsHub;User ID=sa;Password=HS|s[~xxQzTo/n>9jO;encrypt=False;trustServerCertificate=True;MultipleActiveResultSets=True"); protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.UseCollation("Modern_Spanish_CI_AS"); + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.Id).HasName("PK__PhOH_Tax__3213E83F26F7EAEF"); + + entity.ToTable("PhOH_Tax_Conditions"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.CmpClase) + .HasMaxLength(10) + .HasColumnName("cmp_clase"); + entity.Property(e => e.Description) + .HasMaxLength(100) + .HasColumnName("description"); + }); + modelBuilder.Entity(entity => { - entity.HasKey(e => e.TicketId).HasName("PK__PhOH_Tic__712CC607C3A58A28"); + entity.HasKey(e => e.TicketId).HasName("PK__PhOH_Tic__712CC607E630F981"); entity.ToTable("PhOH_Tickets"); @@ -53,6 +88,219 @@ public partial class PhronCareOperationsHubContext : DbContext entity.Property(e => e.Urgencia).HasMaxLength(50); }); + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_AccountTypes"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.CreationDate) + .HasDefaultValueSql("(getdate())") + .HasColumnType("datetime") + .HasColumnName("creation_date"); + entity.Property(e => e.CreditLimit) + .HasColumnType("decimal(18, 2)") + .HasColumnName("credit_limit"); + entity.Property(e => e.Description) + .HasMaxLength(255) + .HasColumnName("description"); + entity.Property(e => e.Name) + .HasMaxLength(50) + .HasColumnName("name"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_BusinessUnits"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.Description) + .HasMaxLength(100) + .HasColumnName("description"); + entity.Property(e => e.Manager) + .HasMaxLength(50) + .HasColumnName("manager"); + entity.Property(e => e.Name) + .HasMaxLength(50) + .HasColumnName("name"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_Customers"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.AccounttypesId).HasColumnName("accounttypes_id"); + entity.Property(e => e.Active).HasColumnName("active"); + entity.Property(e => e.BusinessName) + .HasMaxLength(100) + .HasColumnName("business_name"); + entity.Property(e => e.CreditLimit) + .HasColumnType("decimal(18, 2)") + .HasColumnName("credit_limit"); + entity.Property(e => e.ExternalCode) + .HasMaxLength(10) + .IsFixedLength() + .HasColumnName("external_code"); + entity.Property(e => e.HasCreditAccount).HasColumnName("has_credit_account"); + entity.Property(e => e.Name) + .HasMaxLength(100) + .HasColumnName("name"); + entity.Property(e => e.TaxConditionId).HasColumnName("tax_condition_id"); + + entity.HasOne(d => d.Accounttypes).WithMany(p => p.PhSCustomers) + .HasForeignKey(d => d.AccounttypesId) + .HasConstraintName("FK_PhS_Customers_PhS_AccountTypes"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_CustomerAddress"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.BusinessName) + .HasMaxLength(100) + .IsUnicode(false) + .HasColumnName("business_name"); + entity.Property(e => e.City) + .HasMaxLength(100) + .IsUnicode(false) + .HasColumnName("city"); + entity.Property(e => e.Country) + .HasMaxLength(100) + .IsUnicode(false) + .HasColumnName("country"); + entity.Property(e => e.CustomersId).HasColumnName("customers_id"); + entity.Property(e => e.Email) + .HasMaxLength(100) + .IsUnicode(false) + .HasColumnName("email"); + entity.Property(e => e.Latitude) + .HasColumnType("decimal(9, 6)") + .HasColumnName("latitude"); + entity.Property(e => e.Longitude) + .HasColumnType("decimal(9, 6)") + .HasColumnName("longitude"); + entity.Property(e => e.Notes) + .HasMaxLength(255) + .IsUnicode(false) + .HasColumnName("notes"); + entity.Property(e => e.Phonenumber) + .HasMaxLength(25) + .IsUnicode(false) + .HasColumnName("phonenumber"); + entity.Property(e => e.Postalcode) + .HasMaxLength(20) + .IsUnicode(false) + .HasColumnName("postalcode"); + entity.Property(e => e.Stateprovince) + .HasMaxLength(100) + .IsUnicode(false) + .HasColumnName("stateprovince"); + entity.Property(e => e.Streetaddress1) + .HasMaxLength(255) + .IsUnicode(false) + .HasColumnName("streetaddress1"); + entity.Property(e => e.Streetaddress2) + .HasMaxLength(255) + .IsUnicode(false) + .HasColumnName("streetaddress2"); + + entity.HasOne(d => d.Customers).WithMany(p => p.PhSCustomerAddresses) + .HasForeignKey(d => d.CustomersId) + .HasConstraintName("FK_PhS_CustomerAddress_PhS_Customers"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.Id).HasName("PK__PhS_Cust__3213E83F32E80850"); + + entity.ToTable("PhS_CustomerDocuments"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.CustomersId).HasColumnName("customers_id"); + entity.Property(e => e.DocumentNumber) + .HasMaxLength(50) + .HasColumnName("document_number"); + entity.Property(e => e.DocumenttypesId).HasColumnName("documenttypes_id"); + entity.Property(e => e.ExpiryDate).HasColumnName("expiry_date"); + entity.Property(e => e.IssueDate).HasColumnName("issue_date"); + + entity.HasOne(d => d.Customers).WithMany(p => p.PhSCustomerDocuments) + .HasForeignKey(d => d.CustomersId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK__PhS_Custo__custo__6754599E"); + + entity.HasOne(d => d.Documenttypes).WithMany(p => p.PhSCustomerDocuments) + .HasForeignKey(d => d.DocumenttypesId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("FK_PhS_CustomerDocuments_PhS_DocumentTypes"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_DocumentTypes"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.Code) + .HasMaxLength(4) + .HasColumnName("code"); + entity.Property(e => e.Description) + .HasMaxLength(255) + .HasColumnName("description"); + entity.Property(e => e.Name) + .HasMaxLength(100) + .HasColumnName("name"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_Products"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.BusinessunitsId).HasColumnName("businessunits_id"); + + entity.HasOne(d => d.Businessunits).WithMany(p => p.PhSProducts) + .HasForeignKey(d => d.BusinessunitsId) + .HasConstraintName("FK_PhS_Products_PhS_BusinessUnits"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_QuoteDetails"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.ProductsId).HasColumnName("products_id"); + entity.Property(e => e.QuoteheadersId).HasColumnName("quoteheaders_id"); + + entity.HasOne(d => d.Products).WithMany(p => p.PhSQuoteDetails) + .HasForeignKey(d => d.ProductsId) + .HasConstraintName("FK_PhS_QuoteDetails_PhS_Products"); + + entity.HasOne(d => d.Quoteheaders).WithMany(p => p.PhSQuoteDetails) + .HasForeignKey(d => d.QuoteheadersId) + .HasConstraintName("FK_PhS_QuoteDetails_PhS_QuoteHeaders"); + }); + + modelBuilder.Entity(entity => + { + entity.ToTable("PhS_QuoteHeaders"); + + entity.Property(e => e.Id).HasColumnName("id"); + entity.Property(e => e.BusinessunitsId).HasColumnName("businessunits_id"); + entity.Property(e => e.CustomersId).HasColumnName("customers_id"); + entity.Property(e => e.TicketId) + .HasMaxLength(50) + .HasColumnName("ticket_id"); + + entity.HasOne(d => d.Businessunits).WithMany(p => p.PhSQuoteHeaders) + .HasForeignKey(d => d.BusinessunitsId) + .HasConstraintName("FK_PhS_QuoteHeaders_PhS_BusinessUnits"); + + entity.HasOne(d => d.Customers).WithMany(p => p.PhSQuoteHeaders) + .HasForeignKey(d => d.CustomersId) + .HasConstraintName("FK_PhS_QuoteHeaders_PhS_Customers"); + }); + OnModelCreatingPartial(modelBuilder); } diff --git a/Models/Repositories/GenericRepository.cs b/Models/Repositories/GenericRepository.cs new file mode 100644 index 0000000..adae5fe --- /dev/null +++ b/Models/Repositories/GenericRepository.cs @@ -0,0 +1,43 @@ +using Microsoft.EntityFrameworkCore; +using Models.Interfaces; + +namespace Models.Repositories +{ + public class GenericRepository : IGenericRepository where T : class + { + private readonly DbContext _context; + private readonly DbSet _dbSet; + + public GenericRepository(DbContext context) + { + _context = context; + _dbSet = context.Set(); + } + + public async Task GetByIdAsync(int id) + { + return await _dbSet.FindAsync(id); + } + + public async Task> GetAllAsync() + { + return await _dbSet.ToListAsync(); + } + + public async Task AddAsync(T entity) + { + await _dbSet.AddAsync(entity); + } + + public void Update(T entity) + { + _dbSet.Update(entity); + } + + public void Delete(T entity) + { + _dbSet.Remove(entity); + } + } + +} diff --git a/Models/Repositories/PhSAccountTypeRepository.cs b/Models/Repositories/PhSAccountTypeRepository.cs new file mode 100644 index 0000000..828931f --- /dev/null +++ b/Models/Repositories/PhSAccountTypeRepository.cs @@ -0,0 +1,23 @@ +using Domain.Entities; +using Microsoft.EntityFrameworkCore; +using Models.Interfaces; +using Models.Models; + +namespace Models.Repositories +{ + public class PhSAccountTypeRepository : GenericRepository, IPhSAccountTypeRepository + { + private readonly DbContext _context; + + public PhSAccountTypeRepository(DbContext context) : base(context) + { + _context = context; + } + + public async Task GetByNameAsync(string name) + { + return await _context.Set() + .FirstOrDefaultAsync(a => a.Name == name); + } + } +} diff --git a/phronCare.API/Controllers/IMiddleware.cs b/phronCare.API/Controllers/IMiddleware.cs deleted file mode 100644 index b35d8e5..0000000 --- a/phronCare.API/Controllers/IMiddleware.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Threading.Tasks; -using Microsoft.AspNetCore.Http; - -public class RequestLoggingMiddleware : IMiddleware -{ - public async Task InvokeAsync(HttpContext context, RequestDelegate next) - { - // Captura información de la solicitud antes de que se procese la autenticación - var request = context.Request; - var requestInfo = $"{request.Method} {request.Path}{request.QueryString}"; - Console.Clear(); - // Registra la información en la consola o en tu sistema de registro - Console.WriteLine($"METODO SOLICITUD ENTRANTE: {requestInfo}"); - Console.WriteLine($"PATH SOLICITUD ENTRANTE: {requestInfo}"); - Console.WriteLine($"QUERY STRING ENTRANTE: {requestInfo}"); - - await next(context); - } -} diff --git a/phronCare.API/Controllers/RequestLoggingMiddleware.cs b/phronCare.API/Controllers/RequestLoggingMiddleware.cs new file mode 100644 index 0000000..7df6bf0 --- /dev/null +++ b/phronCare.API/Controllers/RequestLoggingMiddleware.cs @@ -0,0 +1,19 @@ +//using System.Threading.Tasks; +//using Microsoft.AspNetCore.Http; + +//public class RequestLoggingMiddleware : IMiddleware +//{ +// public async Task InvokeAsync(HttpContext context, RequestDelegate next) +// { +// // Captura información de la solicitud antes de que se procese la autenticación +// var request = context.Request; +// var requestInfo = $"{request.Method} {request.Path}{request.QueryString}"; +// Console.Clear(); +// // Registra la información en la consola o en tu sistema de registro +// Console.WriteLine($"METODO SOLICITUD ENTRANTE: {requestInfo}"); +// Console.WriteLine($"PATH SOLICITUD ENTRANTE: {requestInfo}"); +// Console.WriteLine($"QUERY STRING ENTRANTE: {requestInfo}"); + +// await next(context); +// } +//} diff --git a/phronCare.API/Controllers/Sales/AccountTypeController.cs b/phronCare.API/Controllers/Sales/AccountTypeController.cs new file mode 100644 index 0000000..2053902 --- /dev/null +++ b/phronCare.API/Controllers/Sales/AccountTypeController.cs @@ -0,0 +1,31 @@ +using Core.Interfaces; +using Microsoft.AspNetCore.Mvc; + +namespace phronCare.API.Controllers.Sales +{ + [Route("api/[controller]")] + [ApiController] + public class AccountTypeController : ControllerBase + { + private readonly IAccountTypeDom _accountTypeService; + + // Constructor que acepta ITicketDom como parámetro + public AccountTypeController(IAccountTypeDom accountTypeService) + { + _accountTypeService = accountTypeService ?? throw new ArgumentNullException(nameof(accountTypeService)); + } + [HttpGet("GetAll")] + public async Task GetAll() + { + try + { + var result = await _accountTypeService.GetAllAsync(); + return Ok(result); + } + catch (Exception ex) + { + return BadRequest(ex.Message); + } + } + } +} diff --git a/phronCare.API/Program.cs b/phronCare.API/Program.cs index 40175a1..b3eedfc 100644 --- a/phronCare.API/Program.cs +++ b/phronCare.API/Program.cs @@ -28,9 +28,13 @@ var configuration = builder.Configuration; builder.Services.AddDbContext(options => options.UseSqlServer(configuration.GetConnectionString("phronCareDB"))); // DB Seguridad builder.Services.AddDbContext(options => options.UseSqlServer(configuration.GetConnectionString("PhronCareOperationsHubConnection"))); // DB Operacional +#endregion +#region Repositorios y Servicios builder.Services.AddScoped(); -builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); #endregion #region Require Confirmed Email diff --git a/phronCare.API/phronCare.API.csproj.user b/phronCare.API/phronCare.API.csproj.user index 73a770f..bb86d91 100644 --- a/phronCare.API/phronCare.API.csproj.user +++ b/phronCare.API/phronCare.API.csproj.user @@ -5,5 +5,7 @@ phronCare API + MvcControllerEmptyScaffolder + root/Common/MVC/Controller \ No newline at end of file diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.CSharp.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.CSharp.wasm index 4214118..8072797 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.CSharp.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.CSharp.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.Core.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.Core.wasm index ab428cd..6fed4a5 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.Core.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.Core.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.wasm index 6f75411..ade6817 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.VisualBasic.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Primitives.wasm index 29f6f43..c034a7c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Registry.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Registry.wasm index 2e8dcc7..02644c6 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Registry.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/Microsoft.Win32.Registry.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.AppContext.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.AppContext.wasm index 6f963fc..7895f30 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.AppContext.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.AppContext.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Buffers.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Buffers.wasm index e440b05..70709be 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Buffers.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Buffers.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Concurrent.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Concurrent.wasm index 1c248fa..e18c1b5 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Concurrent.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Concurrent.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Immutable.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Immutable.wasm index b6ef367..8d39cb4 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Immutable.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Immutable.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.NonGeneric.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.NonGeneric.wasm index b16a16e..6d7bccc 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.NonGeneric.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.NonGeneric.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Specialized.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Specialized.wasm index d96d190..44bca49 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Specialized.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.Specialized.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.wasm index 5763446..ff68355 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Collections.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Annotations.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Annotations.wasm index 1675c84..e47c05a 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Annotations.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Annotations.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.DataAnnotations.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.DataAnnotations.wasm index 8c0faf0..11bf9b4 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.DataAnnotations.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.DataAnnotations.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.EventBasedAsync.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.EventBasedAsync.wasm index 1f44f77..62a276b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.EventBasedAsync.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.EventBasedAsync.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Primitives.wasm index 5c9e245..b5adfb1 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.TypeConverter.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.TypeConverter.wasm index 9cb359f..776c941 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.TypeConverter.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.TypeConverter.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.wasm index 8d4e993..d5fc23c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ComponentModel.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Configuration.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Configuration.wasm index 67d006f..2b8f545 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Configuration.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Configuration.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Console.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Console.wasm index aa8ac00..a230966 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Console.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Console.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Core.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Core.wasm index 48c57b9..3c01d0a 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Core.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Core.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.Common.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.Common.wasm index 526ab25..5d800de 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.Common.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.Common.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.DataSetExtensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.DataSetExtensions.wasm index 30cabc0..570cb8b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.DataSetExtensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.DataSetExtensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.wasm index 703d0e5..9dfddfd 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Data.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Contracts.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Contracts.wasm index 4ae2b06..bc27d11 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Contracts.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Contracts.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Debug.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Debug.wasm index 59260c5..c5b87dc 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Debug.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Debug.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.DiagnosticSource.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.DiagnosticSource.wasm index 4daa33f..9c2385b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.DiagnosticSource.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.DiagnosticSource.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.FileVersionInfo.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.FileVersionInfo.wasm index 4634398..ecaa64c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.FileVersionInfo.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.FileVersionInfo.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Process.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Process.wasm index 15c6215..351686f 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Process.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Process.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.StackTrace.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.StackTrace.wasm index 0dc25ef..071497c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.StackTrace.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.StackTrace.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TextWriterTraceListener.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TextWriterTraceListener.wasm index f8d0fca..6919fe8 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TextWriterTraceListener.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TextWriterTraceListener.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tools.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tools.wasm index 5445ec5..2ee6a0d 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tools.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tools.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TraceSource.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TraceSource.wasm index c2586c0..7ac95c4 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TraceSource.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.TraceSource.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tracing.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tracing.wasm index aee57c2..2e940ae 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tracing.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Diagnostics.Tracing.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.Primitives.wasm index 640073d..146c754 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.wasm index 63edf8a..dc38157 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Drawing.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Dynamic.Runtime.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Dynamic.Runtime.wasm index d1a58c8..582a9d2 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Dynamic.Runtime.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Dynamic.Runtime.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Asn1.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Asn1.wasm index 8a6e9fa..7307249 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Asn1.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Asn1.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Tar.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Tar.wasm index 7f64735..6c62183 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Tar.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Formats.Tar.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Calendars.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Calendars.wasm index 55eb664..a044108 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Calendars.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Calendars.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Extensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Extensions.wasm index d69e546..1677574 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Extensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.Extensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.wasm index e8f938c..5e30a03 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Globalization.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.Brotli.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.Brotli.wasm index 9cc9f66..f78620a 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.Brotli.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.Brotli.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.FileSystem.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.FileSystem.wasm index 6d79f53..4482667 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.FileSystem.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.FileSystem.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.ZipFile.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.ZipFile.wasm index 11a5a5a..f9c1b37 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.ZipFile.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.ZipFile.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.wasm index 4fe2c27..c94b52c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Compression.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.AccessControl.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.AccessControl.wasm index aef1137..3755460 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.AccessControl.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.AccessControl.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.DriveInfo.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.DriveInfo.wasm index 7e0281f..1d21f45 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.DriveInfo.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.DriveInfo.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Primitives.wasm index 969c197..c973948 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Watcher.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Watcher.wasm index cfb3693..e2ed184 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Watcher.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.Watcher.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.wasm index 7fb1792..fffe190 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.FileSystem.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.IsolatedStorage.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.IsolatedStorage.wasm index 8a32d3c..cfec1cf 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.IsolatedStorage.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.IsolatedStorage.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.MemoryMappedFiles.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.MemoryMappedFiles.wasm index 64d9f1d..127d0b9 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.MemoryMappedFiles.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.MemoryMappedFiles.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.AccessControl.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.AccessControl.wasm index 4537f18..6f3fb1b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.AccessControl.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.AccessControl.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.wasm index f1bc317..4b49928 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.Pipes.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.UnmanagedMemoryStream.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.UnmanagedMemoryStream.wasm index b36d820..279d542 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.UnmanagedMemoryStream.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.UnmanagedMemoryStream.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.wasm index a83da95..6fd2bfb 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.IO.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Expressions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Expressions.wasm index 78192d3..d8be707 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Expressions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Expressions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Parallel.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Parallel.wasm index f755bdf..ef0babd 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Parallel.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Parallel.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Queryable.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Queryable.wasm index 9699505..ceb2df0 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Queryable.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.Queryable.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.wasm index 95636d6..d00162f 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Linq.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Memory.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Memory.wasm index 1f77e2c..3cb446a 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Memory.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Memory.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.Json.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.Json.wasm index 8c9d8b8..a60d0b6 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.Json.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.Json.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.wasm index b2bff06..4846082 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Http.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.HttpListener.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.HttpListener.wasm index c3f8a23..d3bb81f 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.HttpListener.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.HttpListener.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Mail.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Mail.wasm index 6657d0b..684507c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Mail.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Mail.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NameResolution.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NameResolution.wasm index b0d586c..2c96e60 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NameResolution.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NameResolution.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NetworkInformation.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NetworkInformation.wasm index f4b1927..6de037d 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NetworkInformation.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.NetworkInformation.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Ping.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Ping.wasm index d1f5146..3d5c076 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Ping.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Ping.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Primitives.wasm index 3aba3e2..2c7f2af 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Quic.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Quic.wasm index b50314a..cb0cd3f 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Quic.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Quic.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Requests.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Requests.wasm index 3550841..8109b2b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Requests.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Requests.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Security.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Security.wasm index b0dd09e..2e76305 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Security.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Security.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.ServicePoint.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.ServicePoint.wasm index 06f970f..94791df 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.ServicePoint.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.ServicePoint.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Sockets.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Sockets.wasm index 73e40b8..3bdac28 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Sockets.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.Sockets.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebClient.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebClient.wasm index 61d537a..190be9c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebClient.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebClient.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebHeaderCollection.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebHeaderCollection.wasm index b3620cf..8182971 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebHeaderCollection.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebHeaderCollection.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebProxy.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebProxy.wasm index 6b84d4d..d86de92 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebProxy.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebProxy.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.Client.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.Client.wasm index b44856f..20933a8 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.Client.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.Client.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.wasm index 5ba71d3..497f751 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.WebSockets.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.wasm index 0829e03..0f92e09 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Net.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.Vectors.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.Vectors.wasm index 4fd5b1e..5815126 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.Vectors.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.Vectors.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.wasm index 22de68e..84d65ab 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Numerics.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ObjectModel.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ObjectModel.wasm index f29f9d7..0fc0e56 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ObjectModel.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ObjectModel.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.CoreLib.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.CoreLib.wasm index d8621c1..c1270e8 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.CoreLib.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.CoreLib.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.DataContractSerialization.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.DataContractSerialization.wasm index 00b096a..6ea20af 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.DataContractSerialization.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.DataContractSerialization.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Uri.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Uri.wasm index 5e91b1e..79f4f50 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Uri.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Uri.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.Linq.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.Linq.wasm index 740925b..3d31931 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.Linq.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.Linq.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.wasm index 357251d..2bb5111 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Private.Xml.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.DispatchProxy.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.DispatchProxy.wasm index 93ae9f7..6831a09 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.DispatchProxy.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.DispatchProxy.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.ILGeneration.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.ILGeneration.wasm index 3ac6e1d..cb26b20 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.ILGeneration.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.ILGeneration.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.Lightweight.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.Lightweight.wasm index 4578f35..359a36a 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.Lightweight.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.Lightweight.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.wasm index 8dc0a10..345a2d0 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Emit.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Extensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Extensions.wasm index 06b0845..1335a9f 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Extensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Extensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Metadata.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Metadata.wasm index 29ccacc..293e6cc 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Metadata.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Metadata.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Primitives.wasm index 31bd293..5541145 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.TypeExtensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.TypeExtensions.wasm index 247922d..9395a96 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.TypeExtensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.TypeExtensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.wasm index 3055db9..87a97db 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Reflection.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Reader.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Reader.wasm index aef9bd5..59d0101 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Reader.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Reader.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.ResourceManager.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.ResourceManager.wasm index e903d80..7ca2d1e 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.ResourceManager.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.ResourceManager.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Writer.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Writer.wasm index 7594650..462674c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Writer.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Resources.Writer.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.Unsafe.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.Unsafe.wasm index a8f8c87..c852858 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.Unsafe.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.Unsafe.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.VisualC.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.VisualC.wasm index 2d003e7..748cc6f 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.VisualC.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.CompilerServices.VisualC.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Extensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Extensions.wasm index 11be08f..399701e 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Extensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Extensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Handles.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Handles.wasm index 9342b02..1b42aa2 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Handles.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Handles.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.JavaScript.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.JavaScript.wasm index 00f1245..3313595 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.JavaScript.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.JavaScript.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.RuntimeInformation.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.RuntimeInformation.wasm index 02b3496..60343ff 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.RuntimeInformation.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.RuntimeInformation.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.wasm index ced05ce..2f16950 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.InteropServices.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Intrinsics.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Intrinsics.wasm index 23a20d5..19ae031 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Intrinsics.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Intrinsics.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Loader.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Loader.wasm index 0bd1d83..0b9d867 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Loader.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Loader.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Numerics.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Numerics.wasm index e04ced0..db136c6 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Numerics.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Numerics.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Formatters.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Formatters.wasm index e4dd5b7..b731f60 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Formatters.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Formatters.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Json.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Json.wasm index 1072b0e..59d5a09 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Json.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Json.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Primitives.wasm index d79679c..5a43df7 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Xml.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Xml.wasm index 46c62b5..5e5f400 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Xml.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.Xml.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.wasm index 41f79ae..a3af35c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.Serialization.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.wasm index 9417dbf..84ad115 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Runtime.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.AccessControl.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.AccessControl.wasm index 74a2f8b..1a09583 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.AccessControl.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.AccessControl.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Claims.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Claims.wasm index ea40bcb..da85705 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Claims.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Claims.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Algorithms.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Algorithms.wasm index e969baf..d8111de 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Algorithms.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Algorithms.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Cng.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Cng.wasm index 0dcf288..bdf719a 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Cng.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Cng.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Csp.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Csp.wasm index 774c373..b1a508e 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Csp.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Csp.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Encoding.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Encoding.wasm index 4b95d5c..29c3bd8 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Encoding.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Encoding.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.OpenSsl.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.OpenSsl.wasm index 598b36b..8f56f92 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.OpenSsl.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.OpenSsl.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Primitives.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Primitives.wasm index feb0f4c..6684b26 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Primitives.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.Primitives.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.X509Certificates.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.X509Certificates.wasm index 3c04499..0bb1a99 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.X509Certificates.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.X509Certificates.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.wasm index 91f01db..8283588 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Cryptography.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.Windows.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.Windows.wasm index b6a3270..855136e 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.Windows.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.Windows.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.wasm index ca944c0..5ef9c5d 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.Principal.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.SecureString.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.SecureString.wasm index cf6d1d1..9e0bae4 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.SecureString.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.SecureString.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.wasm index 097d7bd..d6d773c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Security.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceModel.Web.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceModel.Web.wasm index 74f85a9..493f786 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceModel.Web.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceModel.Web.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceProcess.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceProcess.wasm index 92589ee..ef033eb 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceProcess.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ServiceProcess.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.CodePages.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.CodePages.wasm index 20eda52..6cb2410 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.CodePages.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.CodePages.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.Extensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.Extensions.wasm index 5a5c540..9fd6c0b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.Extensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.Extensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.wasm index ec8be94..20f6648 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encoding.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encodings.Web.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encodings.Web.wasm index 405309b..61802b9 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encodings.Web.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Encodings.Web.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Json.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Json.wasm index 2d46159..f0f80a4 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Json.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.Json.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.RegularExpressions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.RegularExpressions.wasm index 3ab46dc..221d185 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.RegularExpressions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Text.RegularExpressions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Channels.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Channels.wasm index b77109d..b641940 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Channels.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Channels.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Overlapped.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Overlapped.wasm index 2296f00..377fec6 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Overlapped.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Overlapped.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Dataflow.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Dataflow.wasm index 0f65a36..514fb39 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Dataflow.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Dataflow.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Extensions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Extensions.wasm index 364af64..e905c30 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Extensions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Extensions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Parallel.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Parallel.wasm index 0ee3345..1bc1bbd 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Parallel.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.Parallel.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.wasm index 42a5686..4cefa26 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Tasks.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Thread.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Thread.wasm index cc84b32..042dbde 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Thread.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Thread.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.ThreadPool.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.ThreadPool.wasm index d4f84d8..1111540 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.ThreadPool.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.ThreadPool.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Timer.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Timer.wasm index 23c47f8..f05d5e1 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Timer.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.Timer.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.wasm index 04ba793..5ccbce9 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Threading.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.Local.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.Local.wasm index 048b025..e60f0bd 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.Local.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.Local.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.wasm index e41ab78..d3f41fb 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Transactions.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ValueTuple.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ValueTuple.wasm index b33fa43..7f8908b 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ValueTuple.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.ValueTuple.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.HttpUtility.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.HttpUtility.wasm index a000c6f..359b1bc 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.HttpUtility.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.HttpUtility.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.wasm index f6dca5a..a8b2f2c 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Web.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Windows.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Windows.wasm index 5caa1ef..5130ed1 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Windows.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Windows.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Linq.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Linq.wasm index 7bfa5c8..a4b0092 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Linq.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Linq.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.ReaderWriter.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.ReaderWriter.wasm index 9a5c36b..73a2bc1 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.ReaderWriter.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.ReaderWriter.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Serialization.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Serialization.wasm index 5f54d6e..d7729a1 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Serialization.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.Serialization.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XDocument.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XDocument.wasm index 86c7733..85e71f9 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XDocument.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XDocument.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.XDocument.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.XDocument.wasm index 065bf95..876e461 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.XDocument.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.XDocument.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.wasm index 4673009..6c2a0b2 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XPath.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlDocument.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlDocument.wasm index 7422f4d..5fd9af8 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlDocument.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlDocument.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlSerializer.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlSerializer.wasm index 802924c..f4a60a0 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlSerializer.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.XmlSerializer.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.wasm index d66fc6e..b3b0246 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.Xml.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.wasm index 7b11a60..f18123e 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/System.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/WindowsBase.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/WindowsBase.wasm index 8a92f25..debb5e4 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/WindowsBase.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/WindowsBase.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/mscorlib.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/mscorlib.wasm index d24f8e6..b461812 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/mscorlib.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/mscorlib.wasm differ diff --git a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/netstandard.wasm b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/netstandard.wasm index 6b274f1..dad3eb1 100644 Binary files a/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/netstandard.wasm and b/phronCare.UIBlazor/obj/Debug/net8.0/tmp-webcil/netstandard.wasm differ