示例#1
0
 public void Insert(Artist entity)
 {
     _artistDAL.Add(entity);
 }
示例#2
0
 public void Insert(Artist entity)
 {
     Check(entity);
     artistDAL.Add(entity);
 }