public int UpdateNewsPhoto(DLModel.NewsPhoto newsPhoto)
 {
     return(_newsPhotoRepository.Update((DLModel.NewsPhoto) new DLModel.NewsPhoto().InjectFrom(newsPhoto)));
 }
 public int AddNewsPhoto(DLModel.NewsPhoto newsPhoto)
 {
     return(_newsPhotoRepository.Add((DLModel.NewsPhoto) new DLModel.NewsPhoto().InjectFrom(newsPhoto)).NewsPhotoID);
 }