忱 沈 4 years ago
parent
commit
3c0c2050da
  1. 2
      MainWindow.xaml
  2. 31
      Models/DyelotsBatchProvider.cs
  3. 31
      Models/DyelotsProvider.cs
  4. 31
      Models/MachinesProvider.cs
  5. 3
      Models/Models.csproj

2
MainWindow.xaml

@ -9,5 +9,5 @@
x:Class="Audit.MainWindow"
mc:Ignorable="d"
Title="化学品审计管理" Height="1080" Width="1920">
<Button Content="Button" HorizontalAlignment="Left" Height="115" Margin="505,315,0,0" VerticalAlignment="Top" Width="315"/>
<Button Content="Button" HorizontalAlignment="Left" Height="115" Margin="485,760,0,0" VerticalAlignment="Top" Width="315"/>
</Window>

31
Models/DyelotsBatchProvider.cs

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public class DyelotsBatchProvider : IProvider<DyelotsBatch>
{
public int Delete(DyelotsBatch t)
{
throw new NotImplementedException();
}
public int Insert(DyelotsBatch t)
{
throw new NotImplementedException();
}
public List<DyelotsBatch> Select()
{
throw new NotImplementedException();
}
public int Update(DyelotsBatch t)
{
throw new NotImplementedException();
}
}
}

31
Models/DyelotsProvider.cs

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public class DyelotsProvider : IProvider<Dyelots>
{
public int Delete(Dyelots t)
{
throw new NotImplementedException();
}
public int Insert(Dyelots t)
{
throw new NotImplementedException();
}
public List<Dyelots> Select()
{
throw new NotImplementedException();
}
public int Update(Dyelots t)
{
throw new NotImplementedException();
}
}
}

31
Models/MachinesProvider.cs

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public class MachinesProvider : IProvider<Machines>
{
public int Delete(Machines t)
{
throw new NotImplementedException();
}
public int Insert(Machines t)
{
throw new NotImplementedException();
}
public List<Machines> Select()
{
throw new NotImplementedException();
}
public int Update(Machines t)
{
throw new NotImplementedException();
}
}
}

3
Models/Models.csproj

@ -128,6 +128,7 @@
<Compile Include="DyelotsBatch.cs">
<DependentUpon>SQL_BD.tt</DependentUpon>
</Compile>
<Compile Include="DyelotsBatchProvider.cs" />
<Compile Include="DyelotsBulkedRecipe.cs">
<DependentUpon>SQL_BD.tt</DependentUpon>
</Compile>
@ -146,6 +147,7 @@
<Compile Include="DyelotsInAutoHistory.cs">
<DependentUpon>SQL_BD.tt</DependentUpon>
</Compile>
<Compile Include="DyelotsProvider.cs" />
<Compile Include="DYESTUFF_QUEUE.cs">
<DependentUpon>SQL_Ti.tt</DependentUpon>
</Compile>
@ -171,6 +173,7 @@
<Compile Include="MachinesHistory.cs">
<DependentUpon>SQL_BD.tt</DependentUpon>
</Compile>
<Compile Include="MachinesProvider.cs" />
<Compile Include="MachineState.cs">
<DependentUpon>SQL_BD.tt</DependentUpon>
</Compile>

Loading…
Cancel
Save