示例#1
0
 int IShowsManager.CreateShow(Contracts.Show showToCreate)
 {
     ShowDal dal = new ShowDal();
     return dal.CreateEntity(showToCreate);
 }
示例#2
0
 public void CreateShow(Contracts.Show showToCreate)
 {
     ShowDal dal = new ShowDal();
     dal.CreateEntity(showToCreate);
 }