示例#1
0
        //Categorie
        public CategorieBLL FindCategorieByID(int categorieID)
        {
            CategorieBLL ProposedReturnValue = null;
            CategorieDal DataLayerObject     = _context.FindCategorieByID(categorieID);

            if (null != DataLayerObject)
            {
                ProposedReturnValue = new CategorieBLL(DataLayerObject);
            }
            return(ProposedReturnValue);
        }
示例#2
0
 public CategorieBLL(CategorieDal dal)
 {
     this.CategorieID = dal.CategorieID;
     this.Categorie   = dal.Categorie;
 }