blob: 50fe4e962a41a80594a099b126e7c7d53a76ebf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Serialization;
namespace Tango.BL.Entities
{
public partial class Spool : SpoolBase
{
public Spool Clone(Machine machine)
{
var cloned = base.Clone();
cloned.Machine = machine;
return cloned;
}
/// <summary>
/// Initializes a new instance of the <see cref="Spool" /> class.
/// </summary>
public Spool() : base()
{
}
}
}
|