Item Modifier added

This commit is contained in:
unknown
2011-01-22 18:08:30 +05:30
parent 3ea5fc75ab
commit 98e1e1df30
42 changed files with 674 additions and 284 deletions

View File

@ -1,21 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Data.SqlClient;
namespace Tanshu.Accounts.Contracts
{
public interface IProductBI
{
bool Insert(ProductBO product);
bool Update(ProductBO product);
bool Delete(Guid productID);
ProductBO GetProductFromName(string nameAndUnits);
ProductBO GetProduct(Guid productID);
decimal GetProductStock(DateTime date, Guid productID, Guid? voucherID);
List<ProductDisplayBO> GetProducts();
List<ProductDisplaySmallBO> GetFilteredProducts(Dictionary<string, string> filter);
List<ProductDisplaySmallBO> GetProducts(Guid productTypeID);
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Data.SqlClient;
namespace Tanshu.Accounts.Contracts
{
public interface IProductGroupBI
{
ProductGroupBO GetProductGroup(Guid productGroupID);
ProductGroupBO GetProductGroupByName(string name);
bool Insert(ProductGroupBO productGroup);
bool Update(ProductGroupBO productGroup);
List<ProductGroupBO> GetProductGroups();
}
}

View File

@ -1,19 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Data.SqlClient;
namespace Tanshu.Accounts.Contracts
{
public interface IProductTypeBI
{
ProductTypeBO GetProductType(Guid productTypeID);
ProductTypeBO GetProductTypeByName(string name);
bool Insert(ProductTypeBO productType);
bool Update(ProductTypeBO productType);
List<ProductTypeBO> GetProductTypes();
}
}