delete unneded thigs

This commit is contained in:
Калышев Ян 2023-05-13 06:09:06 -07:00
parent 7c3053bbea
commit 6994197938
11 changed files with 0 additions and 168 deletions

View File

@ -1,9 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Enums
{
public enum PaymentType
{
Неизвестен = -1,
Наличными = 0,
Картой = 1,
Смешанный = 2
}
}

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels
{
public interface IId
{
int Id { get; }
}
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IFurnitureModel : IId
{
string Name { get; }
double Cost { get; }
DateTime DateCreate { get; }
Dictionary<int, (IMaterialModel, int)> FurnitureMaterials { get; }
int UserId { get; }
}
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IFurnitureModuleModel : IId
{
string Name { get; }
double Cost { get; }
DateTime DateCreate { get; }
int UserId { get; }
Dictionary<int, (IFurnitureModel, int)> FurnitureModuleFurnitures { get; }
}
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Formats.Asn1.AsnWriter;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IMaterialModel : IId
{
string Name { get; }
double Cost { get; }
int ScopeId { get; }
int UserId { get; }
}
}

View File

@ -1,19 +0,0 @@
using FurnitureAssembly_WorkerDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IOrderModel : IId
{
string CustomerName { get; }
PaymentType PaymentType { get; }
int SetId { get; }
int UserId { get; }
double Sum { get; }
DateTime DateCreate { get; }
}
}

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IRoleModel : IId
{
string Name { get; }
}
}

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IScopeModel : IId
{
string Name { get; }
}
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface ISetModel : IId
{
string Name { get; }
double Cost { get; }
DateTime DateCreate { get; }
int UserId { get; }
Dictionary<int, (IFurnitureModuleModel, int)> SetFurnitureModules { get; }
}
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssembly_WorkerDataModels.Models
{
public interface IUserModel : IId
{
string Login { get; }
string Password { get; }
string Name { get; }
int RoleId { get; }
}
}