예제 #1
0
 /// <summary>
 /// Code to getch article data from base i.e. Article data, dimensiions, typ and Rabatt mappings
 /// </summary>
 /// <param name="ObjEArticle"></param>
 /// <returns></returns>
 public EArticles GetArticle(EArticles ObjEArticle)
 {
     try
     {
         if (ObjDArticles == null)
         {
             ObjDArticles = new DArticles();
         }
         ObjEArticle = ObjDArticles.GetArticle(ObjEArticle);
     }
     catch (Exception ex)
     {
         throw;
     }
     return(ObjEArticle);
 }