Exemple #1
0
 /// <summary>
 /// Code to Fetch Rabatt list along with Typ mapping from database
 /// </summary>
 /// <param name="ObjEArticle"></param>
 /// <returns></returns>
 public EArticles GetRabatt(EArticles ObjEArticle)
 {
     try
     {
         if (ObjDArticles == null)
         {
             ObjDArticles = new DArticles();
         }
         ObjEArticle = ObjDArticles.GetRabatt(ObjEArticle);
     }
     catch (Exception ex)
     {
         throw;
     }
     return(ObjEArticle);
 }