19 lines
498 B
C#
19 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ServiceModel;
|
|
|
|
using System.Data.SqlClient;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public interface IPrintLocationBI
|
|
{
|
|
void Insert(PrintLocationBO printLocation);
|
|
void Update(PrintLocationBO printLocation);
|
|
bool Delete(int tableID);
|
|
PrintLocationBO GetPrintLocation(int printLocationID);
|
|
PrintLocationBO GetPrintLocation(Guid productTypeID, string location);
|
|
}
|
|
}
|