Table load complete. Printer stub removed for actual code.
This commit is contained in:
15
Tanshu.Accounts.Contracts/DAOFactory/PrintLocationDAO.cs
Normal file
15
Tanshu.Accounts.Contracts/DAOFactory/PrintLocationDAO.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user