delete unneded thigs
This commit is contained in:
parent
7c3053bbea
commit
6994197938
@ -1,9 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
@ -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
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user