2011-01-13 20:21:02 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
|
|
|
{
|
|
|
|
|
public interface IPrintLocationDAO : IDisposable
|
|
|
|
|
{
|
|
|
|
|
void Insert(PrintLocationBO printLocation);
|
|
|
|
|
void Update(PrintLocationBO printLocation);
|
|
|
|
|
bool Delete(int tableID);
|
|
|
|
|
PrintLocationBO GetPrintLocation(int printLocationID);
|
2011-01-17 14:55:43 +00:00
|
|
|
|
PrintLocationBO GetPrintLocation(Guid? productTypeID, string location);
|
2011-01-13 20:21:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|