int IShowsManager.CreateShow(Contracts.Show showToCreate)
 {
     ShowDal dal = new ShowDal();
     return dal.CreateEntity(showToCreate);
 }
 public void CreateShow(Contracts.Show showToCreate)
 {
     ShowDal dal = new ShowDal();
     dal.CreateEntity(showToCreate);
 }