public IEnumerable <Rebelde> CreateList(StringCollection collection) { foreach (var item in collection) { var cadena = _split.Convert(item, ','); _listRebeldes.Append(_rebelde = new Rebelde(cadena[0], cadena[1])); } return(_listRebeldes); }
public Rebelde Create(StringCollection collection) { try { var cadena = _split.Convert(collection[0], ','); _rebelde = new Rebelde(cadena[0], cadena[1]); return(_rebelde); } catch (Exception e) { throw new RebeldeFactoryException("Error en RebeldeFactory metodo Create ", e); } }
public Rebelds CreateRebeld(StringCollection collection) { try { var cadena = _split.Convert(collection[0], ','); _rebelde = new Rebelds(cadena[0], cadena[1]); } catch (Exception ex) { throw new FactoryException("No se ha podido crear el objeto de rebelde", ex); } return(_rebelde); }
public IEnumerable <Rebelds> CreateListRebelds(StringCollection collection) { try { foreach (var item in collection) { var cadena = _split.Convert(item, ','); _listRebelds.Append(Rebeld = new Rebelds(cadena[0], cadena[1])); } } catch (Exception ex) { throw new FactoryException("No se ha podido crear la lista de rebeldes", ex); } return(_listRebelds); }
public Rebelds CreateRebeld(StringCollection collection) { try { var cadena = _split.Convert(collection[0], ','); _rebelde = new Rebelds(cadena[0], cadena[1]); if (_validationRegisterSpecification.IsSatisfiedBy(_rebelde) == true) { return(_rebelde); } else { throw new FactoryException("No se ha podido crear el objeto "); } } catch (Exception ex) { throw new FactoryException("No se ha podido crear el objeto de rebelde", ex); } return(_rebelde); }