public ContactoService(ICondicionesDePagoRepository ICondicionesDePagoRepository, ICuentasBancariasRepository ICuentasBancariasRepository, IContactoRepository ContactoRepository, IContactoRelacionRepository IContactoRelacionRepository)
 {
     this.cpRepository = ICondicionesDePagoRepository;
     this.cbRepository = ICuentasBancariasRepository;
     this.repository   = ContactoRepository;
     this.crRepository = IContactoRelacionRepository;
 }
 public ContactoService(IContactoRepository ContactoRepository, IContactoRelacionRepository IContactoRelacionRepository)
 {
     this.ContactoRepository          = ContactoRepository;
     this.IContactoRelacionRepository = IContactoRelacionRepository;
 }