public IEnumerable <ItemModel> GetComboItem(int distritoId, int baseId, int clienteId, string puntoEntrega)
 {
     return(EntityDao.FindByCodes(new[] { distritoId }, new[] { baseId }, new[] { clienteId }, new string[] { puntoEntrega }).Select(e => Mapper.ToItem(e)));
 }