15 lines
470 B
C#
15 lines
470 B
C#
|
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);
|
|||
|
PrintLocationBO GetPrintLocation(Guid productTypeID, string location);
|
|||
|
}
|
|||
|
}
|