Ejemplo n.º 1
0
 public int AddNewsLetter(DLModel.NewsLetter _policy)
 {
     return(_newsLetterRepository.Add(_policy).NewsLetterID);
 }
Ejemplo n.º 2
0
 public int UpdateNewsLetter(DLModel.NewsLetter _policy)
 {
     return(_newsLetterRepository.Update(_policy));
 }
Ejemplo n.º 3
0
 public void GetNewsLetterAll()
 {
     DLModel.NewsLetter _getNewsLetter = _resourseBL.GetNewsLetterAll(1);
     Assert.IsTrue(_getNewsLetter != null, "Unable to get");
 }