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 230 additions and 29 deletions

View 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);
}
}