root/UnityWeb/UnityWeb/Repository/NHibernateDataAccess/Providers/Interfaces/IProductDataProvider.cs
| 55 | 56 | ||
|---|---|---|---|
1 | #region Using Statements | ||
2 | |||
1 | using System.Collections.Generic; | 3 | using System.Collections.Generic; |
2 | using Domain.Business; | 4 | using Domain.Business; |
3 | 5 | ||
6 | #endregion | ||
7 | |||
4 | namespace Repository.NHibernateDataAccess.Providers.Interfaces | 8 | namespace Repository.NHibernateDataAccess.Providers.Interfaces |
5 | { | 9 | { |
6 | public interface IProductDataProvider | 10 | public interface IProductDataProvider |
7 | { | 11 | { |
8 | IList<Product> GetProducts(); | 12 | IList<Product> GetProducts(); |
13 | Product GetProduct(int id); | ||
9 | } | 14 | } |
10 | } | 15 | } |
Download diff