Rename to Elwig
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using WGneu.Models;
|
||||
using Elwig.Models;
|
||||
|
||||
namespace WGneu.Helpers {
|
||||
namespace Elwig.Helpers {
|
||||
public class AppDbContext : DbContext {
|
||||
public DbSet<Country> Countries { get; set; }
|
||||
public DbSet<Member> Members { get; set; }
|
||||
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WGneu.Helpers {
|
||||
namespace Elwig.Helpers {
|
||||
// 1 °KMW =
|
||||
// 1 °NM = kg/100L = 10g/L
|
||||
// 1 °Oe =
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace WGneu.Helpers {
|
||||
namespace Elwig.Helpers {
|
||||
public sealed class TempFile : IDisposable {
|
||||
private int Usages = 0;
|
||||
public string FilePath { get; private set; }
|
||||
|
@ -8,7 +8,7 @@ using System.Windows.Controls;
|
||||
using System.Diagnostics;
|
||||
using System.Windows.Controls.Primitives;
|
||||
|
||||
namespace WGneu.Helpers {
|
||||
namespace Elwig.Helpers {
|
||||
public static class Utils {
|
||||
public static void SetInputChanged(Control input) {
|
||||
var brush = Brushes.Orange;
|
||||
|
@ -2,9 +2,9 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Controls;
|
||||
using WGneu.Models;
|
||||
using Elwig.Models;
|
||||
|
||||
namespace WGneu.Helpers {
|
||||
namespace Elwig.Helpers {
|
||||
static class Validator {
|
||||
|
||||
private static readonly Dictionary<string, string[][]> PHONE_NRS = new() {
|
||||
|
Reference in New Issue
Block a user