Exemple #1
0
        public List <MS_Product_Response> GetProduct(MS_Product_Request req)
        {
            List <MS_Product_Response> RetVal = new List <MS_Product_Response>();

            try
            {
                RetVal = DAL.GetProduct(req);
            }
            catch (Exception ex)
            {
                RetVal = null;
                throw ex;
            }
            finally
            {
            }
            return(RetVal);
        }
Exemple #2
0
 public static Product GetProduct(int productID)
 {
     return(DAL_Product.GetProduct(productID));
 }