Nhibernate(1)续

在前面的基础上加个工厂
接口层IDAL
using  System;
using  System.Collections.Generic;
using  System.Text;

namespace  IDAL
{
    
public   interface  AnimalsIDAL
    {
        
bool  Add(Model.Animals a);
    }
}
工厂层:Factory
缓存帮助类
Code

Code

BLL:

Code

 

你可能感兴趣的:(Hibernate)