Table load complete. Printer stub removed for actual code.

This commit is contained in:
unknown
2011-01-14 01:51:02 +05:30
parent c63bc62304
commit 76cd512ebc
16 changed files with 228 additions and 27 deletions
@@ -0,0 +1,13 @@
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class PrintLocationBO
{
public int PrintLocationID { get; set; }
public Guid ProductTypeID { get; set; }
public string Location { get; set; }
public string Printer { get; set; }
}
}